<!DOCTYPE html>
ContrApption
ContrApption allows users to easily create an interactive JavaScript widget that accepts user input via a searchable drop-down menu and produces boxplot visualizations of targets in RNA-Seq and similarly structured datasets. This permits easy, visual inspection of results from a single function call in R and, because ContrApption is written in JavaScript and runs in a browser, sharing of those results without hosting a Shiny server. For the most basic usage, ContrApption simply requires:
- A data.frame of numeric data to visualize where the columns are the samples in the experiment (“numeric data”).
- A data.frame of metadata describing the experimental features and denoting which samples belong to which experimental conditions (“annotation data”).
Note that the row names of the annotation data must mach the column names of the numeric data. This reflects the requirements of the RNA-Seq experiments for which ContrApption was designed. An intuitive visualization of this data structure can be found on page 5 of the Beginner’s guide to using the DESeq2 package. There is no reason a user from other domains with data in the same structure cannot use the tool however, as the inputs required are simply strings and numbers.
For more complex usage, the user may create a shared data object from the counts dataframe so it can be visualized in ContrApption and in the DT datatables widget simultaneously. Selections in one widget will update the other. Furthermore, the user may provide differential expression data and counts data so that selections in a table of differential expression results can be plotted live in ContrApption as they are explored.
In this vignette we will walk through simple and complex usage of ContrApption with the pasilla dataset used in the DESeq2 vignette.
Vignette dependencies
We load the requires libraries:
library(ContrApption)
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.0 ──
## ✓ ggplot2 3.3.3 ✓ purrr 0.3.4
## ✓ tibble 3.1.1 ✓ dplyr 1.0.5
## ✓ tidyr 1.1.3 ✓ stringr 1.4.0
## ✓ readr 1.4.0 ✓ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
# libraries for optional integration
library(DT)
library(crosstalk)
suppressMessages(
{
library(DESeq2)
library(edgeR)
library(limma)
library(pasilla)
}
)
## Warning: package 'GenomeInfoDb' was built under R version 4.0.5
Quick start
load("ContrApptionQuickStart.RData")
ContrApption provides function for several styles of interactive boxplot-based widgets for the interactive exploration of RNA-Seq or similarly structured data. The three primary modes are 1) boxplot, 2) boxplot and counts table, and 3) boxplot and differential expression table. We provide the createContrApption function that takes counts, annotation, and optional differential expression results. Based on the inputs and their SharedData status, ContrApption will infer the mode and produce widgets appropriately. Additionally, we expose the core ContrApption function for users who want more customize the way ContrApption interacts with the DT widget.
Counts boxplot
The most basic form of ContrApption produces a standalone boxplot from (non-shared) counts and annotations.
# the basic usage of ContrApption
createContrApption(counts = normCountsSig, annotation = coldata)
Counts table and boxplot
Substituting a crosstalk::SharedData object in place of the counts data.frame will produce a paired widget that displays the counts in an interactive table as well as a ContrApption widget.
createContrApption(counts = normCountsSigShared, annotation = coldata)
Differential expression table & boxplot
Passing a differential expression table (in the form of a crosstalk::SharedData object) with basic, non-shared counts will produce a paired widget that displays the differential expression results in and interactive table in addition to the boxplot.
createContrApption(deResults = resShared, counts = normCountsSig, annotation = coldata)
Dataset
The ContrApption (“Contrast App”) vignette makes use of DESeq2 and the pasilla dataset to demonstrate the intended use of ContrApption. The following is a modified version of the “Count matrix input” section of the DESeq2 vignette.
Annotation data and groups
The following snippet retrieves the column metadata for the Pasilla experiment.
# loads sample annotation from the pasilla package
pasAnno <- system.file("extdata", "pasilla_sample_annotation.csv",
package = "pasilla", mustWork = TRUE)
# read in the sample data
coldata <- read.csv(pasAnno, row.names = 1)
# select relevant columns
coldata <- data.frame(coldata[ , c("condition","type")])
# remove un-needed characters
rownames(coldata) <- gsub("fb", "", rownames(coldata))
# visualize our metadata
coldata
## condition type
## treated1 treated single-read
## treated2 treated paired-end
## treated3 treated paired-end
## untreated1 untreated single-read
## untreated2 untreated single-read
## untreated3 untreated paired-end
## untreated4 untreated paired-end
This matrix will be our annotation input. Here the rownames are the sample names of the experiment.
Numeric data
The Pasilla dataset contains per-exon and per-gene read counts of RNA-seq samples which will be our data input. The exons/genes are the rows, and the samples in the experiment are the columns. The following code extracts the counts from the package.
# loads counts file from the pasilla package
pasCts <- system.file("extdata", "pasilla_gene_counts.tsv",
package = "pasilla", mustWork = TRUE)
# reads counts of genes
cts <- read.csv(pasCts, sep = "\t", row.names = "gene_id")
# make sure the order is correct
cts <- cts[, rownames(coldata)]
# examine the counts
head(cts)
## treated1 treated2 treated3 untreated1 untreated2 untreated3
## FBgn0000003 0 0 1 0 0 0
## FBgn0000008 140 88 70 92 161 76
## FBgn0000014 4 0 0 5 1 0
## FBgn0000015 1 0 0 0 2 1
## FBgn0000017 6205 3072 3334 4664 8714 3564
## FBgn0000018 722 299 308 583 761 245
## untreated4
## FBgn0000003 0
## FBgn0000008 70
## FBgn0000014 0
## FBgn0000015 2
## FBgn0000017 3150
## FBgn0000018 310
We now have all we need to run DESeq2 and thus to run ContrApption.
DESeq2 normalized counts example
We can create a DESeq2 dataset, run DESeq2 on it, and then extract the normalized counts for visualization.
# create a DESeq2 dataset from the metadata and counts
dds <- DESeq(DESeqDataSetFromMatrix(countData = cts, colData = coldata, design = ~ condition))
## Warning in DESeqDataSet(se, design = design, ignoreRank): some variables in
## design formula are characters, converting to factors
## estimating size factors
## estimating dispersions
## gene-wise dispersion estimates
## mean-dispersion relationship
## final dispersion estimates
## fitting model and testing
# extract the normalized counts
normCounts <- counts(dds, normalized = TRUE)
head(normCounts)
## treated1 treated2 treated3 untreated1 untreated2
## FBgn0000003 0.0000000 0.0000 1.200981 0.000000 0.0000000
## FBgn0000008 85.5968034 115.5963 84.068670 80.824908 89.7936241
## FBgn0000014 2.4456230 0.0000 0.000000 4.392658 0.5577244
## FBgn0000015 0.6114057 0.0000 0.000000 0.000000 1.1154487
## FBgn0000017 3793.7726082 4035.3632 4004.070676 4097.471407 4860.0101913
## FBgn0000018 441.4349433 392.7648 369.902150 512.183926 424.4282483
## untreated3 untreated4
## FBgn0000003 0.000000 0.000000
## FBgn0000008 117.004615 93.123591
## FBgn0000014 0.000000 0.000000
## FBgn0000015 1.539534 2.660674
## FBgn0000017 5486.900612 4190.561607
## FBgn0000018 377.185929 412.404476
Given that embedding multiples widgets with 14599 rows of data may lead to performance issues, the user may want to focus on genes of interest as determined by the differential expression experiment:
# extract significant results
res <- results(dds, tidy = TRUE) %>%
data.frame %>%
filter(padj < 0.05)
# get the counts for signficant transcripts
normCountsSig <- normCounts %>%
data.frame %>%
filter(rownames(.) %in% res$row) %>%
format(digits = 2)
normCountsSig %>% nrow
## [1] 845
When used without crosstalk, ContrApption will look for rownnames to determine the list of targets of the targets. If there is an existing column the user would like to use, they can change this behavior by specifying a targetCol argument. Similarly, the the sample IDs are assumed to be the rownames of the annotation file, but the user may specify a column using the sampleCol argument.
Basic usage
We’ll demonstrate the most straightforward use cases of ContrApption - visualizing count data and using pre-defined functions to leverage crosstalk compatibility.
Basic counts usage
The most basic usage of ContrApption is to pass counts and annotations to it. We pass the dataset and the annotation file to ContrApption, resulting in a widget with a searchable drop-down menu of experimental features and boxplots of the input data grouped as directed.
# the basic usage of ContrApption
createContrApption(counts = normCountsSig, annotation = coldata)
Users may customize the title and y-axis labels of the plot by setting the plotName and yAxisName arguments. The showLegend argument turns on the plot legend.
createContrApption(
counts = normCountsSig,
annotation = coldata,
plotName = "DESeq2 normalized counts by sample types",
yAxisName = "norm. counts",
showLegend = TRUE
)
Interaction-style example
ContrApption operates on experimental factors with an arbitrary numbers of levels. We can leverage this to explore the interaction of multiple factors of interest by merging the columns of the annotation file.
# derive a new variable - every combination of condition and type
coldata$interaction <- paste0(coldata$condition, ":", coldata$type)
head(coldata)
## condition type interaction
## treated1 treated single-read treated:single-read
## treated2 treated paired-end treated:paired-end
## treated3 treated paired-end treated:paired-end
## untreated1 untreated single-read untreated:single-read
## untreated2 untreated single-read untreated:single-read
## untreated3 untreated paired-end untreated:paired-end
We can then use the function normally, and we’ll se an extra option in the dropdown menu that allows us to explore our new variable.
# pass our new variable
createContrApption(counts = normCountsSig, annotation = coldata)
Note that users interested in this sort of experiment would generally re-run DESeq2 with a different experimental design:
>DESeq(DESeqDataSetFromMatrix(countData = cts, colData = coldata, design = ~ condition * type))
Crosstalk integration
Counts
ContrApption is crosstalk compatible for usage with DT. Users may leverage this by creating a shared data object and passing it to the datatables and ContrApption functions to produce interactive widgets that react to inputs in one another. Selecting a row in the datatable will result in a call to visualize the selected row in ContrApption, and selecting a target in ContrApption will filter the table to that row in the datatable. ContrApption will not changed an object once it becomes a shared data object, and they do no have rownames, so when using crosstalk, create the “gene” column before creating the shared data object.
# create a column for out targets
normCountsSig$gene <- rownames(normCountsSig)
# create a shared data object
normCountsSigShared <- SharedData$new(normCountsSig)
We’re now ready to use the cross-enabled function of ContrApption.
Paried-widget counts function
The createContrApption will create a side-by-side pair of widgets - one showing the counts and one showing the ContrApption visualization. To use it in this manner simply pass a shared counts object to the counts argument and the column data toannotation.
createContrApption(counts = normCountsSigShared, annotation = coldata)
Differential expression data
Users may also be interested in viewing the results of tests for differential expression with the visualizations provided. Also note that the gene, or other target name column must be created before passing the data to SharedData\(new</code>.</p> <pre class="r"><code>normCountsSig <- normCounts %>% data.frame %>% filter(rownames(.) %in% res\)row)
normCountsSig$gene <- rownames(normCountsSig)
get the significant targets from the DESeq2 experiment and format them
res <- results(dds) %>% data.frame %>% dplyr::filter(padj < 0.05) %>% format(digits = 2)
resShared <- SharedData\(new(res)</code></pre> <div id="paried-widget-differential-expression-function" class="section level4"> <h4>Paried-widget differential expression function</h4> <p>The <code>createContrApption</code> function can also be used with differential expression results data. To use the function in this manner, pass the shared differential expression results table as a shared object to the <code>deResults</code> argument, the non-shared counts to <code>counts</code>, and the “coldata” to <code>annotation</code>.</p> <pre class="r"><code>createContrApption(deResults = resShared, counts = normCountsSig, annotation = coldata)</code></pre> <div class="container-fluid crosstalk-bscols"> <div class="fluid-row"> <div class="col-xs-6"> <div id="htmlwidget-97aedd8764ddf15cd248" style="width:100%;height:500px;" class="datatables html-widget"></div> <script type="application/json" data-for="htmlwidget-97aedd8764ddf15cd248">{"x":{"crosstalkOptions":{"key":["FBgn0000043","FBgn0000064","FBgn0000071","FBgn0000079","FBgn0000116","FBgn0000139","FBgn0000146","FBgn0000147","FBgn0000244","FBgn0000256","FBgn0000286","FBgn0000299","FBgn0000346","FBgn0000392","FBgn0000405","FBgn0000406","FBgn0000416","FBgn0000447","FBgn0000490","FBgn0000524","FBgn0000535","FBgn0000565","FBgn0000567","FBgn0000578","FBgn0000579","FBgn0000826","FBgn0000928","FBgn0001091","FBgn0001114","FBgn0001122","FBgn0001124","FBgn0001137","FBgn0001197","FBgn0001206","FBgn0001224","FBgn0001225","FBgn0001226","FBgn0001257","FBgn0001258","FBgn0001297","FBgn0001332","FBgn0001967","FBgn0001977","FBgn0002527","FBgn0002543","FBgn0002567","FBgn0002609","FBgn0002773","FBgn0002778","FBgn0002868","FBgn0002891","FBgn0002945","FBgn0003041","FBgn0003053","FBgn0003074","FBgn0003076","FBgn0003137","FBgn0003317","FBgn0003328","FBgn0003360","FBgn0003366","FBgn0003390","FBgn0003447","FBgn0003501","FBgn0003502","FBgn0003507","FBgn0003525","FBgn0003557","FBgn0003748","FBgn0003862","FBgn0003884","FBgn0003886","FBgn0003888","FBgn0003891","FBgn0003996","FBgn0004108","FBgn0004197","FBgn0004369","FBgn0004387","FBgn0004396","FBgn0004456","FBgn0004507","FBgn0004584","FBgn0004597","FBgn0004650","FBgn0004652","FBgn0004865","FBgn0004870","FBgn0004893","FBgn0005593","FBgn0005640","FBgn0005660","FBgn0005694","FBgn0008649","FBgn0010097","FBgn0010194","FBgn0010222","FBgn0010223","FBgn0010225","FBgn0010228","FBgn0010300","FBgn0010314","FBgn0010316","FBgn0010382","FBgn0010395","FBgn0010470","FBgn0010549","FBgn0010591","FBgn0010768","FBgn0010786","FBgn0010894","FBgn0011016","FBgn0011206","FBgn0011259","FBgn0011260","FBgn0011274","FBgn0011305","FBgn0011592","FBgn0011606","FBgn0011674","FBgn0011710","FBgn0011722","FBgn0011754","FBgn0011823","FBgn0012034","FBgn0013272","FBgn0013576","FBgn0013720","FBgn0013763","FBgn0013765","FBgn0013811","FBgn0013997","FBgn0014029","FBgn0014033","FBgn0014163","FBgn0014417","FBgn0014469","FBgn0014869","FBgn0014906","FBgn0015371","FBgn0015522","FBgn0015541","FBgn0015568","FBgn0015576","FBgn0015777","FBgn0015795","FBgn0015801","FBgn0015903","FBgn0016075","FBgn0016715","FBgn0016926","FBgn0017551","FBgn0020240","FBgn0020248","FBgn0020249","FBgn0020257","FBgn0020376","FBgn0020386","FBgn0020391","FBgn0020414","FBgn0020416","FBgn0020493","FBgn0020633","FBgn0020887","FBgn0021795","FBgn0022160","FBgn0022338","FBgn0022382","FBgn0022702","FBgn0023091","FBgn0023129","FBgn0023477","FBgn0023479","FBgn0023549","FBgn0024150","FBgn0024250","FBgn0024288","FBgn0024315","FBgn0024491","FBgn0024836","FBgn0024841","FBgn0024891","FBgn0024977","FBgn0024984","FBgn0025111","FBgn0025574","FBgn0025593","FBgn0025628","FBgn0025678","FBgn0025681","FBgn0025682","FBgn0025683","FBgn0025739","FBgn0025836","FBgn0025865","FBgn0026150","FBgn0026179","FBgn0026189","FBgn0026319","FBgn0026376","FBgn0026380","FBgn0026415","FBgn0026439","FBgn0026562","FBgn0026576","FBgn0026585","FBgn0026721","FBgn0026760","FBgn0027091","FBgn0027279","FBgn0027348","FBgn0027515","FBgn0027525","FBgn0027552","FBgn0027561","FBgn0027578","FBgn0027580","FBgn0027590","FBgn0027594","FBgn0027596","FBgn0027597","FBgn0027657","FBgn0027836","FBgn0027843","FBgn0027865","FBgn0027949","FBgn0028327","FBgn0028331","FBgn0028373","FBgn0028394","FBgn0028397","FBgn0028433","FBgn0028434","FBgn0028473","FBgn0028490","FBgn0028491","FBgn0028514","FBgn0028540","FBgn0028542","FBgn0028543","FBgn0028563","FBgn0028939","FBgn0028990","FBgn0029002","FBgn0029090","FBgn0029092","FBgn0029095","FBgn0029114","FBgn0029147","FBgn0029167","FBgn0029608","FBgn0029664","FBgn0029801","FBgn0029861","FBgn0029881","FBgn0029896","FBgn0029970","FBgn0029975","FBgn0030037","FBgn0030041","FBgn0030051","FBgn0030090","FBgn0030145","FBgn0030237","FBgn0030305","FBgn0030318","FBgn0030322","FBgn0030326","FBgn0030343","FBgn0030349","FBgn0030361","FBgn0030362","FBgn0030412","FBgn0030452","FBgn0030482","FBgn0030485","FBgn0030529","FBgn0030576","FBgn0030588","FBgn0030598","FBgn0030612","FBgn0030634","FBgn0030662","FBgn0030672","FBgn0030752","FBgn0030805","FBgn0030839","FBgn0030884","FBgn0030954","FBgn0030960","FBgn0030966","FBgn0031012","FBgn0031018","FBgn0031047","FBgn0031049","FBgn0031055","FBgn0031070","FBgn0031117","FBgn0031126","FBgn0031148","FBgn0031150","FBgn0031170","FBgn0031245","FBgn0031258","FBgn0031261","FBgn0031263","FBgn0031268","FBgn0031285","FBgn0031307","FBgn0031313","FBgn0031322","FBgn0031327","FBgn0031359","FBgn0031374","FBgn0031449","FBgn0031461","FBgn0031464","FBgn0031489","FBgn0031516","FBgn0031538","FBgn0031540","FBgn0031547","FBgn0031548","FBgn0031637","FBgn0031688","FBgn0031689","FBgn0031703","FBgn0031738","FBgn0031752","FBgn0031769","FBgn0031805","FBgn0031816","FBgn0031872","FBgn0031888","FBgn0031912","FBgn0031913","FBgn0031914","FBgn0031952","FBgn0031968","FBgn0031988","FBgn0032004","FBgn0032005","FBgn0032026","FBgn0032029","FBgn0032036","FBgn0032078","FBgn0032105","FBgn0032140","FBgn0032156","FBgn0032330","FBgn0032400","FBgn0032405","FBgn0032409","FBgn0032420","FBgn0032421","FBgn0032422","FBgn0032436","FBgn0032451","FBgn0032482","FBgn0032498","FBgn0032533","FBgn0032598","FBgn0032601","FBgn0032635","FBgn0032638","FBgn0032698","FBgn0032699","FBgn0032775","FBgn0032785","FBgn0032808","FBgn0032810","FBgn0032820","FBgn0032859","FBgn0032881","FBgn0032899","FBgn0032956","FBgn0033033","FBgn0033065","FBgn0033079","FBgn0033095","FBgn0033113","FBgn0033115","FBgn0033128","FBgn0033153","FBgn0033188","FBgn0033204","FBgn0033205","FBgn0033268","FBgn0033288","FBgn0033292","FBgn0033302","FBgn0033359","FBgn0033362","FBgn0033363","FBgn0033364","FBgn0033367","FBgn0033368","FBgn0033402","FBgn0033426","FBgn0033446","FBgn0033448","FBgn0033458","FBgn0033483","FBgn0033495","FBgn0033502","FBgn0033504","FBgn0033541","FBgn0033635","FBgn0033649","FBgn0033724","FBgn0033764","FBgn0033775","FBgn0033777","FBgn0033782","FBgn0033844","FBgn0033857","FBgn0033913","FBgn0033924","FBgn0033926","FBgn0034010","FBgn0034013","FBgn0034067","FBgn0034139","FBgn0034142","FBgn0034219","FBgn0034221","FBgn0034225","FBgn0034249","FBgn0034354","FBgn0034365","FBgn0034376","FBgn0034378","FBgn0034389","FBgn0034391","FBgn0034398","FBgn0034400","FBgn0034403","FBgn0034405","FBgn0034408","FBgn0034418","FBgn0034432","FBgn0034434","FBgn0034438","FBgn0034447","FBgn0034476","FBgn0034501","FBgn0034523","FBgn0034564","FBgn0034603","FBgn0034636","FBgn0034638","FBgn0034694","FBgn0034718","FBgn0034736","FBgn0034751","FBgn0034793","FBgn0034804","FBgn0034885","FBgn0034886","FBgn0034894","FBgn0034897","FBgn0034898","FBgn0034950","FBgn0034970","FBgn0035001","FBgn0035020","FBgn0035076","FBgn0035083","FBgn0035084","FBgn0035085","FBgn0035091","FBgn0035113","FBgn0035147","FBgn0035150","FBgn0035154","FBgn0035165","FBgn0035173","FBgn0035189","FBgn0035231","FBgn0035232","FBgn0035266","FBgn0035285","FBgn0035287","FBgn0035295","FBgn0035312","FBgn0035344","FBgn0035347","FBgn0035390","FBgn0035403","FBgn0035496","FBgn0035500","FBgn0035523","FBgn0035539","FBgn0035542","FBgn0035603","FBgn0035644","FBgn0035708","FBgn0035710","FBgn0035727","FBgn0035761","FBgn0035765","FBgn0035766","FBgn0035769","FBgn0035789","FBgn0035811","FBgn0035879","FBgn0035903","FBgn0035932","FBgn0035937","FBgn0035957","FBgn0035968","FBgn0035969","FBgn0036007","FBgn0036053","FBgn0036059","FBgn0036147","FBgn0036196","FBgn0036257","FBgn0036272","FBgn0036279","FBgn0036290","FBgn0036299","FBgn0036317","FBgn0036373","FBgn0036449","FBgn0036560","FBgn0036576","FBgn0036616","FBgn0036641","FBgn0036663","FBgn0036684","FBgn0036688","FBgn0036732","FBgn0036752","FBgn0036764","FBgn0036770","FBgn0036801","FBgn0036821","FBgn0036824","FBgn0036857","FBgn0036862","FBgn0036893","FBgn0036896","FBgn0036968","FBgn0036984","FBgn0036985","FBgn0037028","FBgn0037046","FBgn0037074","FBgn0037116","FBgn0037153","FBgn0037213","FBgn0037222","FBgn0037223","FBgn0037239","FBgn0037240","FBgn0037290","FBgn0037369","FBgn0037445","FBgn0037468","FBgn0037539","FBgn0037554","FBgn0037607","FBgn0037635","FBgn0037646","FBgn0037672","FBgn0037678","FBgn0037680","FBgn0037683","FBgn0037705","FBgn0037717","FBgn0037718","FBgn0037739","FBgn0037754","FBgn0037760","FBgn0037844","FBgn0037850","FBgn0037852","FBgn0037872","FBgn0037884","FBgn0037896","FBgn0037901","FBgn0037917","FBgn0038043","FBgn0038049","FBgn0038088","FBgn0038107","FBgn0038118","FBgn0038143","FBgn0038149","FBgn0038198","FBgn0038237","FBgn0038256","FBgn0038261","FBgn0038290","FBgn0038293","FBgn0038341","FBgn0038347","FBgn0038351","FBgn0038381","FBgn0038436","FBgn0038465","FBgn0038476","FBgn0038484","FBgn0038528","FBgn0038545","FBgn0038595","FBgn0038603","FBgn0038608","FBgn0038660","FBgn0038720","FBgn0038745","FBgn0038804","FBgn0038805","FBgn0038815","FBgn0038832","FBgn0038865","FBgn0038877","FBgn0038912","FBgn0039000","FBgn0039026","FBgn0039060","FBgn0039061","FBgn0039069","FBgn0039094","FBgn0039098","FBgn0039101","FBgn0039109","FBgn0039113","FBgn0039155","FBgn0039178","FBgn0039208","FBgn0039209","FBgn0039257","FBgn0039381","FBgn0039385","FBgn0039419","FBgn0039464","FBgn0039467","FBgn0039479","FBgn0039485","FBgn0039525","FBgn0039538","FBgn0039590","FBgn0039593","FBgn0039613","FBgn0039637","FBgn0039640","FBgn0039644","FBgn0039651","FBgn0039696","FBgn0039714","FBgn0039735","FBgn0039756","FBgn0039759","FBgn0039776","FBgn0039788","FBgn0039797","FBgn0039804","FBgn0039808","FBgn0039809","FBgn0039827","FBgn0039874","FBgn0039876","FBgn0039886","FBgn0040070","FBgn0040091","FBgn0040099","FBgn0040271","FBgn0040290","FBgn0040308","FBgn0040373","FBgn0040384","FBgn0040388","FBgn0040398","FBgn0040477","FBgn0040752","FBgn0040813","FBgn0040827","FBgn0041180","FBgn0041183","FBgn0041191","FBgn0041342","FBgn0041588","FBgn0041604","FBgn0041605","FBgn0041607","FBgn0041627","FBgn0041629","FBgn0042094","FBgn0042102","FBgn0043362","FBgn0043364","FBgn0043841","FBgn0044047","FBgn0045852","FBgn0046258","FBgn0046687","FBgn0046763","FBgn0050035","FBgn0050046","FBgn0050069","FBgn0050085","FBgn0050088","FBgn0050147","FBgn0050148","FBgn0050185","FBgn0050269","FBgn0050273","FBgn0050344","FBgn0050359","FBgn0050463","FBgn0051005","FBgn0051038","FBgn0051082","FBgn0051092","FBgn0051098","FBgn0051116","FBgn0051125","FBgn0051150","FBgn0051163","FBgn0051195","FBgn0051216","FBgn0051314","FBgn0051337","FBgn0051361","FBgn0051363","FBgn0051431","FBgn0051453","FBgn0051462","FBgn0051477","FBgn0051523","FBgn0051555","FBgn0051614","FBgn0051637","FBgn0051642","FBgn0051856","FBgn0052021","FBgn0052133","FBgn0052135","FBgn0052185","FBgn0052280","FBgn0052311","FBgn0052407","FBgn0052412","FBgn0052521","FBgn0052529","FBgn0052625","FBgn0052677","FBgn0052681","FBgn0052687","FBgn0052803","FBgn0052813","FBgn0053007","FBgn0053138","FBgn0053181","FBgn0053193","FBgn0053307","FBgn0053346","FBgn0053460","FBgn0053508","FBgn0053516","FBgn0053555","FBgn0053556","FBgn0053558","FBgn0053967","FBgn0054056","FBgn0062978","FBgn0063491","FBgn0063492","FBgn0063493","FBgn0063498","FBgn0063649","FBgn0063667","FBgn0083959","FBgn0085334","FBgn0085354","FBgn0085359","FBgn0085388","FBgn0085402","FBgn0085403","FBgn0085434","FBgn0085438","FBgn0085446","FBgn0086253","FBgn0086355","FBgn0086357","FBgn0086358","FBgn0086365","FBgn0086450","FBgn0086674","FBgn0086687","FBgn0086708","FBgn0086757","FBgn0086906","FBgn0086910","FBgn0087007","FBgn0243512","FBgn0250732","FBgn0250757","FBgn0250785","FBgn0250829","FBgn0250837","FBgn0250867","FBgn0250876","FBgn0250904","FBgn0250906","FBgn0259110","FBgn0259111","FBgn0259217","FBgn0259224","FBgn0259246","FBgn0259714","FBgn0259715","FBgn0259734","FBgn0259741","FBgn0259749","FBgn0259935","FBgn0260011","FBgn0260429","FBgn0260486","FBgn0260632","FBgn0260745","FBgn0260768","FBgn0260933","FBgn0260936","FBgn0260960","FBgn0260966","FBgn0260992","FBgn0261015","FBgn0261053","FBgn0261109","FBgn0261238","FBgn0261258","FBgn0261278","FBgn0261284","FBgn0261285","FBgn0261362","FBgn0261444","FBgn0261545","FBgn0261546","FBgn0261547","FBgn0261552","FBgn0261560","FBgn0261563"],"group":"SharedData99a40067"},"style":"bootstrap","filter":"none","extensions":["Scroller"],"data":[["FBgn0000043","FBgn0000064","FBgn0000071","FBgn0000079","FBgn0000116","FBgn0000139","FBgn0000146","FBgn0000147","FBgn0000244","FBgn0000256","FBgn0000286","FBgn0000299","FBgn0000346","FBgn0000392","FBgn0000405","FBgn0000406","FBgn0000416","FBgn0000447","FBgn0000490","FBgn0000524","FBgn0000535","FBgn0000565","FBgn0000567","FBgn0000578","FBgn0000579","FBgn0000826","FBgn0000928","FBgn0001091","FBgn0001114","FBgn0001122","FBgn0001124","FBgn0001137","FBgn0001197","FBgn0001206","FBgn0001224","FBgn0001225","FBgn0001226","FBgn0001257","FBgn0001258","FBgn0001297","FBgn0001332","FBgn0001967","FBgn0001977","FBgn0002527","FBgn0002543","FBgn0002567","FBgn0002609","FBgn0002773","FBgn0002778","FBgn0002868","FBgn0002891","FBgn0002945","FBgn0003041","FBgn0003053","FBgn0003074","FBgn0003076","FBgn0003137","FBgn0003317","FBgn0003328","FBgn0003360","FBgn0003366","FBgn0003390","FBgn0003447","FBgn0003501","FBgn0003502","FBgn0003507","FBgn0003525","FBgn0003557","FBgn0003748","FBgn0003862","FBgn0003884","FBgn0003886","FBgn0003888","FBgn0003891","FBgn0003996","FBgn0004108","FBgn0004197","FBgn0004369","FBgn0004387","FBgn0004396","FBgn0004456","FBgn0004507","FBgn0004584","FBgn0004597","FBgn0004650","FBgn0004652","FBgn0004865","FBgn0004870","FBgn0004893","FBgn0005593","FBgn0005640","FBgn0005660","FBgn0005694","FBgn0008649","FBgn0010097","FBgn0010194","FBgn0010222","FBgn0010223","FBgn0010225","FBgn0010228","FBgn0010300","FBgn0010314","FBgn0010316","FBgn0010382","FBgn0010395","FBgn0010470","FBgn0010549","FBgn0010591","FBgn0010768","FBgn0010786","FBgn0010894","FBgn0011016","FBgn0011206","FBgn0011259","FBgn0011260","FBgn0011274","FBgn0011305","FBgn0011592","FBgn0011606","FBgn0011674","FBgn0011710","FBgn0011722","FBgn0011754","FBgn0011823","FBgn0012034","FBgn0013272","FBgn0013576","FBgn0013720","FBgn0013763","FBgn0013765","FBgn0013811","FBgn0013997","FBgn0014029","FBgn0014033","FBgn0014163","FBgn0014417","FBgn0014469","FBgn0014869","FBgn0014906","FBgn0015371","FBgn0015522","FBgn0015541","FBgn0015568","FBgn0015576","FBgn0015777","FBgn0015795","FBgn0015801","FBgn0015903","FBgn0016075","FBgn0016715","FBgn0016926","FBgn0017551","FBgn0020240","FBgn0020248","FBgn0020249","FBgn0020257","FBgn0020376","FBgn0020386","FBgn0020391","FBgn0020414","FBgn0020416","FBgn0020493","FBgn0020633","FBgn0020887","FBgn0021795","FBgn0022160","FBgn0022338","FBgn0022382","FBgn0022702","FBgn0023091","FBgn0023129","FBgn0023477","FBgn0023479","FBgn0023549","FBgn0024150","FBgn0024250","FBgn0024288","FBgn0024315","FBgn0024491","FBgn0024836","FBgn0024841","FBgn0024891","FBgn0024977","FBgn0024984","FBgn0025111","FBgn0025574","FBgn0025593","FBgn0025628","FBgn0025678","FBgn0025681","FBgn0025682","FBgn0025683","FBgn0025739","FBgn0025836","FBgn0025865","FBgn0026150","FBgn0026179","FBgn0026189","FBgn0026319","FBgn0026376","FBgn0026380","FBgn0026415","FBgn0026439","FBgn0026562","FBgn0026576","FBgn0026585","FBgn0026721","FBgn0026760","FBgn0027091","FBgn0027279","FBgn0027348","FBgn0027515","FBgn0027525","FBgn0027552","FBgn0027561","FBgn0027578","FBgn0027580","FBgn0027590","FBgn0027594","FBgn0027596","FBgn0027597","FBgn0027657","FBgn0027836","FBgn0027843","FBgn0027865","FBgn0027949","FBgn0028327","FBgn0028331","FBgn0028373","FBgn0028394","FBgn0028397","FBgn0028433","FBgn0028434","FBgn0028473","FBgn0028490","FBgn0028491","FBgn0028514","FBgn0028540","FBgn0028542","FBgn0028543","FBgn0028563","FBgn0028939","FBgn0028990","FBgn0029002","FBgn0029090","FBgn0029092","FBgn0029095","FBgn0029114","FBgn0029147","FBgn0029167","FBgn0029608","FBgn0029664","FBgn0029801","FBgn0029861","FBgn0029881","FBgn0029896","FBgn0029970","FBgn0029975","FBgn0030037","FBgn0030041","FBgn0030051","FBgn0030090","FBgn0030145","FBgn0030237","FBgn0030305","FBgn0030318","FBgn0030322","FBgn0030326","FBgn0030343","FBgn0030349","FBgn0030361","FBgn0030362","FBgn0030412","FBgn0030452","FBgn0030482","FBgn0030485","FBgn0030529","FBgn0030576","FBgn0030588","FBgn0030598","FBgn0030612","FBgn0030634","FBgn0030662","FBgn0030672","FBgn0030752","FBgn0030805","FBgn0030839","FBgn0030884","FBgn0030954","FBgn0030960","FBgn0030966","FBgn0031012","FBgn0031018","FBgn0031047","FBgn0031049","FBgn0031055","FBgn0031070","FBgn0031117","FBgn0031126","FBgn0031148","FBgn0031150","FBgn0031170","FBgn0031245","FBgn0031258","FBgn0031261","FBgn0031263","FBgn0031268","FBgn0031285","FBgn0031307","FBgn0031313","FBgn0031322","FBgn0031327","FBgn0031359","FBgn0031374","FBgn0031449","FBgn0031461","FBgn0031464","FBgn0031489","FBgn0031516","FBgn0031538","FBgn0031540","FBgn0031547","FBgn0031548","FBgn0031637","FBgn0031688","FBgn0031689","FBgn0031703","FBgn0031738","FBgn0031752","FBgn0031769","FBgn0031805","FBgn0031816","FBgn0031872","FBgn0031888","FBgn0031912","FBgn0031913","FBgn0031914","FBgn0031952","FBgn0031968","FBgn0031988","FBgn0032004","FBgn0032005","FBgn0032026","FBgn0032029","FBgn0032036","FBgn0032078","FBgn0032105","FBgn0032140","FBgn0032156","FBgn0032330","FBgn0032400","FBgn0032405","FBgn0032409","FBgn0032420","FBgn0032421","FBgn0032422","FBgn0032436","FBgn0032451","FBgn0032482","FBgn0032498","FBgn0032533","FBgn0032598","FBgn0032601","FBgn0032635","FBgn0032638","FBgn0032698","FBgn0032699","FBgn0032775","FBgn0032785","FBgn0032808","FBgn0032810","FBgn0032820","FBgn0032859","FBgn0032881","FBgn0032899","FBgn0032956","FBgn0033033","FBgn0033065","FBgn0033079","FBgn0033095","FBgn0033113","FBgn0033115","FBgn0033128","FBgn0033153","FBgn0033188","FBgn0033204","FBgn0033205","FBgn0033268","FBgn0033288","FBgn0033292","FBgn0033302","FBgn0033359","FBgn0033362","FBgn0033363","FBgn0033364","FBgn0033367","FBgn0033368","FBgn0033402","FBgn0033426","FBgn0033446","FBgn0033448","FBgn0033458","FBgn0033483","FBgn0033495","FBgn0033502","FBgn0033504","FBgn0033541","FBgn0033635","FBgn0033649","FBgn0033724","FBgn0033764","FBgn0033775","FBgn0033777","FBgn0033782","FBgn0033844","FBgn0033857","FBgn0033913","FBgn0033924","FBgn0033926","FBgn0034010","FBgn0034013","FBgn0034067","FBgn0034139","FBgn0034142","FBgn0034219","FBgn0034221","FBgn0034225","FBgn0034249","FBgn0034354","FBgn0034365","FBgn0034376","FBgn0034378","FBgn0034389","FBgn0034391","FBgn0034398","FBgn0034400","FBgn0034403","FBgn0034405","FBgn0034408","FBgn0034418","FBgn0034432","FBgn0034434","FBgn0034438","FBgn0034447","FBgn0034476","FBgn0034501","FBgn0034523","FBgn0034564","FBgn0034603","FBgn0034636","FBgn0034638","FBgn0034694","FBgn0034718","FBgn0034736","FBgn0034751","FBgn0034793","FBgn0034804","FBgn0034885","FBgn0034886","FBgn0034894","FBgn0034897","FBgn0034898","FBgn0034950","FBgn0034970","FBgn0035001","FBgn0035020","FBgn0035076","FBgn0035083","FBgn0035084","FBgn0035085","FBgn0035091","FBgn0035113","FBgn0035147","FBgn0035150","FBgn0035154","FBgn0035165","FBgn0035173","FBgn0035189","FBgn0035231","FBgn0035232","FBgn0035266","FBgn0035285","FBgn0035287","FBgn0035295","FBgn0035312","FBgn0035344","FBgn0035347","FBgn0035390","FBgn0035403","FBgn0035496","FBgn0035500","FBgn0035523","FBgn0035539","FBgn0035542","FBgn0035603","FBgn0035644","FBgn0035708","FBgn0035710","FBgn0035727","FBgn0035761","FBgn0035765","FBgn0035766","FBgn0035769","FBgn0035789","FBgn0035811","FBgn0035879","FBgn0035903","FBgn0035932","FBgn0035937","FBgn0035957","FBgn0035968","FBgn0035969","FBgn0036007","FBgn0036053","FBgn0036059","FBgn0036147","FBgn0036196","FBgn0036257","FBgn0036272","FBgn0036279","FBgn0036290","FBgn0036299","FBgn0036317","FBgn0036373","FBgn0036449","FBgn0036560","FBgn0036576","FBgn0036616","FBgn0036641","FBgn0036663","FBgn0036684","FBgn0036688","FBgn0036732","FBgn0036752","FBgn0036764","FBgn0036770","FBgn0036801","FBgn0036821","FBgn0036824","FBgn0036857","FBgn0036862","FBgn0036893","FBgn0036896","FBgn0036968","FBgn0036984","FBgn0036985","FBgn0037028","FBgn0037046","FBgn0037074","FBgn0037116","FBgn0037153","FBgn0037213","FBgn0037222","FBgn0037223","FBgn0037239","FBgn0037240","FBgn0037290","FBgn0037369","FBgn0037445","FBgn0037468","FBgn0037539","FBgn0037554","FBgn0037607","FBgn0037635","FBgn0037646","FBgn0037672","FBgn0037678","FBgn0037680","FBgn0037683","FBgn0037705","FBgn0037717","FBgn0037718","FBgn0037739","FBgn0037754","FBgn0037760","FBgn0037844","FBgn0037850","FBgn0037852","FBgn0037872","FBgn0037884","FBgn0037896","FBgn0037901","FBgn0037917","FBgn0038043","FBgn0038049","FBgn0038088","FBgn0038107","FBgn0038118","FBgn0038143","FBgn0038149","FBgn0038198","FBgn0038237","FBgn0038256","FBgn0038261","FBgn0038290","FBgn0038293","FBgn0038341","FBgn0038347","FBgn0038351","FBgn0038381","FBgn0038436","FBgn0038465","FBgn0038476","FBgn0038484","FBgn0038528","FBgn0038545","FBgn0038595","FBgn0038603","FBgn0038608","FBgn0038660","FBgn0038720","FBgn0038745","FBgn0038804","FBgn0038805","FBgn0038815","FBgn0038832","FBgn0038865","FBgn0038877","FBgn0038912","FBgn0039000","FBgn0039026","FBgn0039060","FBgn0039061","FBgn0039069","FBgn0039094","FBgn0039098","FBgn0039101","FBgn0039109","FBgn0039113","FBgn0039155","FBgn0039178","FBgn0039208","FBgn0039209","FBgn0039257","FBgn0039381","FBgn0039385","FBgn0039419","FBgn0039464","FBgn0039467","FBgn0039479","FBgn0039485","FBgn0039525","FBgn0039538","FBgn0039590","FBgn0039593","FBgn0039613","FBgn0039637","FBgn0039640","FBgn0039644","FBgn0039651","FBgn0039696","FBgn0039714","FBgn0039735","FBgn0039756","FBgn0039759","FBgn0039776","FBgn0039788","FBgn0039797","FBgn0039804","FBgn0039808","FBgn0039809","FBgn0039827","FBgn0039874","FBgn0039876","FBgn0039886","FBgn0040070","FBgn0040091","FBgn0040099","FBgn0040271","FBgn0040290","FBgn0040308","FBgn0040373","FBgn0040384","FBgn0040388","FBgn0040398","FBgn0040477","FBgn0040752","FBgn0040813","FBgn0040827","FBgn0041180","FBgn0041183","FBgn0041191","FBgn0041342","FBgn0041588","FBgn0041604","FBgn0041605","FBgn0041607","FBgn0041627","FBgn0041629","FBgn0042094","FBgn0042102","FBgn0043362","FBgn0043364","FBgn0043841","FBgn0044047","FBgn0045852","FBgn0046258","FBgn0046687","FBgn0046763","FBgn0050035","FBgn0050046","FBgn0050069","FBgn0050085","FBgn0050088","FBgn0050147","FBgn0050148","FBgn0050185","FBgn0050269","FBgn0050273","FBgn0050344","FBgn0050359","FBgn0050463","FBgn0051005","FBgn0051038","FBgn0051082","FBgn0051092","FBgn0051098","FBgn0051116","FBgn0051125","FBgn0051150","FBgn0051163","FBgn0051195","FBgn0051216","FBgn0051314","FBgn0051337","FBgn0051361","FBgn0051363","FBgn0051431","FBgn0051453","FBgn0051462","FBgn0051477","FBgn0051523","FBgn0051555","FBgn0051614","FBgn0051637","FBgn0051642","FBgn0051856","FBgn0052021","FBgn0052133","FBgn0052135","FBgn0052185","FBgn0052280","FBgn0052311","FBgn0052407","FBgn0052412","FBgn0052521","FBgn0052529","FBgn0052625","FBgn0052677","FBgn0052681","FBgn0052687","FBgn0052803","FBgn0052813","FBgn0053007","FBgn0053138","FBgn0053181","FBgn0053193","FBgn0053307","FBgn0053346","FBgn0053460","FBgn0053508","FBgn0053516","FBgn0053555","FBgn0053556","FBgn0053558","FBgn0053967","FBgn0054056","FBgn0062978","FBgn0063491","FBgn0063492","FBgn0063493","FBgn0063498","FBgn0063649","FBgn0063667","FBgn0083959","FBgn0085334","FBgn0085354","FBgn0085359","FBgn0085388","FBgn0085402","FBgn0085403","FBgn0085434","FBgn0085438","FBgn0085446","FBgn0086253","FBgn0086355","FBgn0086357","FBgn0086358","FBgn0086365","FBgn0086450","FBgn0086674","FBgn0086687","FBgn0086708","FBgn0086757","FBgn0086906","FBgn0086910","FBgn0087007","FBgn0243512","FBgn0250732","FBgn0250757","FBgn0250785","FBgn0250829","FBgn0250837","FBgn0250867","FBgn0250876","FBgn0250904","FBgn0250906","FBgn0259110","FBgn0259111","FBgn0259217","FBgn0259224","FBgn0259246","FBgn0259714","FBgn0259715","FBgn0259734","FBgn0259741","FBgn0259749","FBgn0259935","FBgn0260011","FBgn0260429","FBgn0260486","FBgn0260632","FBgn0260745","FBgn0260768","FBgn0260933","FBgn0260936","FBgn0260960","FBgn0260966","FBgn0260992","FBgn0261015","FBgn0261053","FBgn0261109","FBgn0261238","FBgn0261258","FBgn0261278","FBgn0261284","FBgn0261285","FBgn0261362","FBgn0261444","FBgn0261545","FBgn0261546","FBgn0261547","FBgn0261552","FBgn0261560","FBgn0261563"],["31162.1"," 7917.2"," 342.2"," 159.5"," 658.4"," 647.2"," 1576.3"," 415.4"," 510.2"," 2184.4"," 484.9","50847.6"," 94.0"," 1080.2"," 2318.2"," 265.5","38598.4"," 619.8"," 200.7"," 891.4"," 177.6"," 602.1"," 261.2"," 5449.6"," 8747.4"," 125.7"," 677.6"," 4323.5","39031.1"," 996.4"," 1265.6"," 494.1"," 3285.2"," 593.0"," 598.9"," 420.3"," 1323.9"," 8089.8"," 1520.2","11081.5"," 1154.7"," 14.3"," 724.1","37820.8"," 908.9"," 48.8"," 43.3"," 41.1"," 1195.5"," 100.1"," 987.2"," 55.5"," 1619.2"," 122.6"," 2163.3"," 1498.6"," 4518.9"," 1351.2"," 806.1"," 4343.0"," 17.7"," 58.7"," 36.3"," 277.5"," 1202.9"," 5589.6"," 1371.2"," 2647.5"," 1096.0"," 3788.1","40700.7"," 414.3"," 6840.4","13040.9"," 78.7"," 660.4"," 1275.3"," 833.2"," 2181.7"," 2423.4"," 3738.8"," 1829.9"," 1835.4"," 252.7"," 135.8"," 1957.7"," 52.7"," 93.3"," 479.3","33460.0"," 1577.8"," 146.0"," 866.9"," 295.9"," 108.6"," 1165.0"," 541.9"," 65.4","12820.9"," 1328.2"," 4906.9"," 348.2"," 466.4"," 1180.5"," 1027.3"," 4778.3"," 415.2"," 1635.9"," 339.9"," 3595.6"," 181.7"," 1740.2"," 274.2"," 264.9"," 211.1"," 777.1"," 640.0"," 505.2"," 1771.6"," 111.5"," 2572.2","13208.8"," 672.0"," 5710.9"," 1778.2","14026.4"," 2533.7"," 369.7","28002.9"," 2713.5"," 352.2"," 1936.5"," 3417.2"," 6494.9"," 3785.6"," 1355.2"," 840.4"," 1571.1"," 3660.3"," 376.6"," 136.2"," 1766.7"," 210.4"," 177.2"," 1046.0"," 2076.3"," 819.8"," 643.3","35789.7"," 150.9"," 918.2"," 289.5"," 2424.8"," 35.6"," 994.7"," 1080.0"," 40.8"," 2963.1"," 222.1"," 9280.8"," 8716.3"," 336.0"," 1870.5"," 1091.7"," 2179.8"," 1326.3"," 1046.8"," 608.1"," 336.1"," 11.0"," 360.5"," 1805.3"," 3091.9"," 216.5"," 2194.0"," 391.7"," 58.9"," 92.1"," 519.8"," 16.5"," 689.3"," 1499.6"," 28.4"," 120.7"," 1501.4"," 407.3"," 10.8"," 3536.5","10270.1"," 3492.1"," 8867.5"," 4410.5"," 508.0"," 93.7"," 4999.4"," 977.9"," 467.0","11465.3"," 561.9"," 1400.3"," 1179.1"," 47.0"," 276.5","43909.3"," 784.9"," 2021.9"," 3845.4"," 20.3"," 1185.7"," 2955.0"," 173.0"," 446.3"," 3310.7"," 1017.5"," 2125.9"," 1372.7"," 1310.1"," 463.8"," 7010.5"," 753.5"," 419.2"," 398.0"," 3303.5"," 743.0"," 407.4"," 1448.2"," 3772.4"," 4474.8"," 42.1"," 149.9"," 354.0"," 92.7"," 83.7","22265.5"," 8218.9"," 168.9"," 599.1"," 115.1"," 1164.0"," 691.7"," 1054.6"," 20.0"," 1360.3"," 1587.7"," 43.5"," 7835.3"," 4160.1"," 1389.9"," 995.8"," 3706.1"," 636.6"," 606.4"," 1492.3"," 664.6"," 4250.1"," 489.9"," 133.9"," 2729.8"," 713.8"," 86.9"," 32.9"," 158.4"," 464.4"," 2009.3"," 519.4"," 2264.3"," 428.1"," 140.6"," 1601.7"," 1852.9"," 132.2"," 6606.7"," 1308.6"," 945.5"," 4225.6"," 320.6"," 8881.1"," 279.5"," 187.4"," 37.9"," 394.1"," 8.0"," 712.5"," 6023.7"," 3462.7"," 340.9"," 159.5"," 81.0"," 17.0"," 252.6"," 255.8"," 939.5"," 41.1"," 1535.0"," 461.4"," 2915.6"," 783.1"," 326.5"," 355.2"," 2739.1"," 795.4"," 938.8"," 193.1"," 107.6"," 2746.3"," 1494.1"," 126.2"," 3259.6"," 1793.9"," 1463.8"," 396.8"," 756.4"," 554.0"," 1994.7"," 920.6"," 547.0"," 29.2"," 1021.6"," 871.1"," 217.0"," 217.3"," 265.3"," 53.7"," 1236.0"," 30.8"," 274.2"," 90.8"," 1004.6"," 1174.8"," 1279.3"," 3108.9"," 146.0"," 499.6"," 2726.0"," 1318.3"," 953.7"," 415.4"," 411.5"," 73.9"," 1870.2"," 961.6"," 4051.9"," 2579.3"," 340.0"," 7558.9"," 4734.2"," 572.3"," 2149.3"," 1439.2"," 343.3"," 436.3"," 79.6"," 897.9"," 134.4"," 180.5"," 42.6"," 17.3"," 584.7"," 3633.0"," 57.4"," 66.2"," 315.3"," 253.0"," 610.8"," 131.9"," 404.5"," 1656.9"," 3131.5"," 212.1"," 28.3"," 73.8"," 332.4"," 3429.2"," 222.5"," 1098.9"," 2798.2"," 1786.6"," 29.9"," 379.0"," 1489.1"," 373.9"," 168.9"," 451.1"," 257.3"," 1362.0"," 335.2"," 1543.4"," 82.4"," 15.1"," 82.6"," 817.0"," 368.4"," 129.0"," 70.2"," 87.2","15324.8"," 63.8"," 1106.7"," 353.0"," 81.5"," 826.4"," 41.1"," 4877.1"," 66.4"," 73.8"," 2075.1"," 22.7"," 2490.1"," 682.2"," 152.8"," 65.2"," 46.9"," 927.5"," 162.2"," 4918.5"," 17.5"," 5213.1"," 392.1"," 6313.3"," 547.2"," 1553.9"," 141.7"," 28.9"," 793.2"," 784.1"," 140.9"," 49.1"," 547.2"," 372.6"," 373.6"," 695.1"," 746.2"," 110.8"," 65.1"," 4836.3"," 5939.6"," 68.0"," 2290.5"," 189.8"," 1012.6"," 1476.1"," 114.6"," 74.6"," 1067.1"," 161.2"," 2693.3"," 285.2"," 326.9"," 581.2"," 15.2"," 1664.0"," 413.6"," 496.0"," 225.9","16641.1"," 522.6"," 39.0"," 160.5"," 6067.5"," 557.0"," 892.5"," 6.7"," 95.8"," 1253.4"," 8222.6"," 282.8"," 30.8"," 2342.9"," 118.6"," 638.2"," 425.5"," 104.6","19322.7"," 2606.0"," 100.8"," 3910.8"," 518.6"," 215.6"," 52.7"," 1724.9"," 383.5"," 711.1"," 54.6"," 533.4"," 220.5"," 77.4"," 594.3"," 1125.6"," 496.3"," 244.0"," 4353.3"," 47.9"," 20.5"," 541.9"," 544.2"," 396.1"," 1196.0"," 17.3"," 65.2"," 584.2"," 556.6"," 1666.7"," 815.4"," 13.6"," 1035.7"," 1373.6"," 104.3"," 27.4"," 902.5"," 14.2"," 295.1"," 12.9"," 1262.7"," 2511.5"," 794.8"," 1651.7"," 164.5"," 1083.9"," 874.7"," 921.6"," 1172.7"," 655.1"," 532.4"," 3859.1"," 1576.9"," 18.9"," 1775.6"," 116.9"," 223.2"," 7681.0"," 908.3"," 375.1"," 2446.5"," 5872.3"," 3653.0"," 1696.0"," 33.9"," 416.3"," 3000.1"," 460.4"," 261.1"," 169.3"," 643.8"," 736.4"," 98.0"," 1932.8"," 324.2"," 24.8"," 2808.5"," 803.7"," 103.1"," 521.1"," 305.6"," 25.0"," 747.7"," 1717.6"," 67.1"," 284.7"," 1256.3"," 3146.7"," 560.7"," 677.9"," 5382.4"," 167.5"," 39.6"," 89.9"," 35.3"," 416.8"," 1434.4"," 363.9"," 512.8"," 2623.0"," 357.5"," 269.8"," 1799.3"," 248.6"," 339.8"," 734.4"," 397.0"," 880.3"," 73.1"," 553.3"," 672.8"," 371.5"," 726.2"," 222.0"," 1280.6"," 502.9"," 28.3"," 993.5"," 62.3"," 20.8"," 1076.0"," 29.1"," 977.8"," 3300.8"," 427.8"," 3041.6"," 97.4"," 158.2"," 622.8"," 6088.9"," 1367.4"," 27.3"," 152.6"," 82.0"," 148.3"," 20.1"," 396.6"," 1644.8"," 255.8"," 1477.3"," 110.4"," 749.3"," 174.8"," 301.9"," 282.8"," 983.3"," 570.6"," 478.0"," 2842.8"," 87.6"," 1055.8"," 33.7"," 15.6"," 308.5"," 294.4"," 475.4"," 474.3"," 730.6"," 13.9"," 4469.8"," 1628.8"," 521.9"," 733.1"," 727.9"," 1564.3"," 820.5"," 5447.9"," 175.7"," 58.6"," 344.8"," 104.6"," 1455.4"," 42.5"," 2832.9"," 3037.4"," 72.0"," 1048.4"," 74.2"," 718.4"," 2309.9"," 1308.5"," 1726.6"," 14.3"," 3224.6"," 17.2"," 244.5"," 975.5"," 38.3"," 583.0"," 261.9"," 882.1"," 277.6"," 899.4"," 3674.2"," 1106.5"," 910.1"," 1010.0"," 711.5"," 728.4"," 83.8"," 220.2"," 1478.5"," 4196.3"," 155.1"," 4855.2","44154.5"," 216.0"," 8880.3"," 162.1"," 765.4"," 3733.2"," 843.8"," 322.1"," 40.3"," 753.4"," 517.4","13145.2"," 113.0"," 10.3"," 1311.2"," 1195.0","14718.1"," 274.0"," 2029.1"," 9.8"," 1737.3"," 2203.0"," 1302.8"," 1082.3"," 1553.5"," 2469.1"," 14.4"," 973.9"," 57.1"," 444.2"," 152.3"," 128.6"," 631.0"," 45.7"," 42.1"," 310.9"," 713.1"," 49.3"," 153.1"," 166.9"," 169.5"," 27.1"," 8828.0"," 12.2"," 924.9"," 1408.5"," 5152.9"," 891.4"," 1344.4"," 7162.5"," 2283.7"," 804.0"," 90.4"," 43.3"," 4596.2"," 9.0"," 93.0"," 2676.3"," 110.5"," 84.6"," 506.0"," 1960.1"," 240.7"," 23.6"," 365.1"," 1440.0"," 187.1"," 1088.3"," 2732.8","10167.5"," 155.8"," 46.1"," 160.5"," 327.2"," 313.0"," 166.0"," 113.8"," 1583.0"," 303.8"," 335.7"," 1013.6"," 12.3"," 1836.9"," 57.9"," 706.2"," 64.3"," 220.9"," 2918.2"," 3283.4"," 74.4"," 17.4"," 1071.9"," 587.7"," 302.1"," 343.9"," 646.2"," 13.1"," 1450.9"," 43.3"," 144.9"," 68.6"," 1945.0"," 5318.5"," 215.7"," 515.7"," 59.4"," 3992.3"," 707.8"," 4137.8"," 4878.6"," 1452.0"," 3446.9"," 5597.7"," 1642.1"," 8483.1"," 242.0"," 609.3"," 1128.1"," 87.1"," 133.3"," 2040.8"," 1140.7"," 81.9"," 1289.7"," 76.3"," 2216.8"," 436.0"," 304.5"," 30.3"," 2642.5"," 654.1"," 2341.8"," 7285.1"," 251.9"," 346.4"," 117.0"," 804.6"," 267.7"," 33.2"," 1396.4"," 44.9"," 89.3"," 68.3"," 1986.9"," 1986.1"," 6070.8"," 124.8"," 747.8"," 2653.0"," 3027.9"," 746.2"," 928.4"," 434.5"," 95.9"," 363.0"," 912.6"," 1991.1"," 999.2"," 51.0"," 431.6"," 5796.4"," 719.4"," 1657.6"," 28.1"," 647.8"," 5128.8"," 1755.9"," 1825.2"],["-0.62","-0.30","-2.68"," 1.07","-1.29"," 0.40","-0.49","-0.42"," 0.40"," 0.45"," 0.53","-0.64","-0.64","-0.47","-0.53"," 2.03"," 0.37","-0.53","-0.86","-0.33"," 0.71","-0.74"," 1.23"," 0.33","-0.47","-0.60","-0.47","-0.71"," 0.52","-0.67","-0.68"," 1.25","-0.35","-0.48","-1.49","-1.35","-1.72","-0.67","-0.94"," 0.39"," 0.51"," 1.87","-0.48"," 0.75","-0.77","-1.01"," 1.51"," 1.16"," 0.67"," 2.13","-0.35"," 1.03","-0.41","-0.93","-0.64","-0.71","-0.92","-0.54"," 0.36"," 3.18"," 1.80","-0.79","-1.98","-2.15","-0.73"," 0.41"," 0.69"," 0.34","-1.07"," 0.46","-0.52","-0.76","-0.47"," 0.44","-0.83","-0.84"," 0.45"," 0.79"," 0.33","-1.08"," 0.33","-0.91","-0.40","-0.51"," 0.74"," 0.67"," 0.90","-0.73"," 0.82"," 0.61","-0.67","-1.05"," 0.33","-0.51","-1.05","-0.30"," 0.54"," 1.44"," 0.49","-0.45"," 0.38","-0.58"," 0.76"," 0.57","-0.89","-0.50"," 0.52"," 0.66"," 0.47","-0.45","-0.86","-0.46"," 0.69","-0.76","-2.05"," 0.76","-0.36","-0.49","-0.45","-0.92","-0.40"," 0.58","-0.44","-0.43"," 0.35"," 0.49"," 0.48","-0.44"," 0.63","-0.50"," 0.87","-0.38","-0.49"," 0.52","-0.60"," 0.36"," 0.32","-0.56"," 0.43"," 0.99"," 0.89","-0.53","-1.07"," 0.92","-0.53"," 0.49"," 0.42"," 0.48","-0.53"," 1.97"," 0.44","-0.47","-0.64","-2.12","-0.39"," 0.68"," 1.49"," 0.39","-0.64"," 0.43"," 0.35"," 0.78","-0.37"," 0.31","-0.44"," 0.86"," 0.47"," 0.53","-0.73","-1.86"," 0.45","-0.48"," 1.53"," 1.57"," 0.60"," 0.71"," 4.59"," 2.29","-0.62","-1.50","-0.37","-0.38","-1.07","-1.48","-2.90","-0.46","-1.85"," 0.50","-0.55"," 0.49"," 0.33"," 0.30","-0.39"," 1.13","-0.33","-0.39","-0.68","-0.39","-0.43"," 1.01","-0.34","-1.16"," 0.43"," 2.36"," 0.43","-0.53"," 0.68"," 1.27"," 0.66"," 1.19"," 1.18","-0.90"," 0.37"," 0.50"," 0.44"," 0.51"," 0.84"," 0.55"," 0.53"," 0.84","-0.65"," 0.47","-0.58","-0.59","-0.63","-0.65","-0.61"," 0.36","-1.30"," 0.67"," 0.75"," 1.35","-0.98"," 0.53"," 0.41","-0.65"," 1.05"," 0.83"," 0.96"," 0.54"," 0.61"," 2.40"," 0.72","-1.44"," 1.47"," 0.45"," 0.45"," 0.44","-0.53"," 2.20"," 0.54","-0.55"," 0.81","-0.45"," 0.51"," 2.45","-0.62","-0.36","-0.73"," 2.84","-1.14"," 0.76","-0.66"," 0.94","-0.48","-0.40","-0.51"," 1.24","-0.49"," 0.59","-0.63"," 0.40"," 0.32"," 0.70"," 0.25","-0.50"," 0.56"," 0.54","-0.57","-2.09"," 0.50"," 3.21","-0.59"," 0.36"," 0.41","-1.08"," 0.56","-0.76","-1.59"," 0.48","-0.66"," 0.47","-0.95","-0.37","-0.69"," 0.55","-0.54","-1.02"," 0.47","-0.56","-1.18"," 0.39","-0.68"," 1.32"," 0.59","-0.36","-0.83"," 0.44","-0.81"," 0.67"," 1.41","-1.23"," 0.86"," 0.82"," 0.85","-0.62"," 1.07","-0.51","-0.73","-0.74"," 0.49"," 1.39"," 1.93"," 0.39","-1.60","-0.96"," 1.85","-0.47"," 0.29","-0.36"," 0.86","-0.65","-0.34","-0.46"," 1.07"," 0.73"," 0.54"," 0.41","-0.87"," 0.36"," 1.19"," 0.40","-0.33"," 0.94"," 0.56","-0.40","-0.52","-0.38"," 0.43"," 0.66"," 0.82","-2.67","-0.32","-0.79","-0.72","-0.96","-2.35","-0.76"," 0.34","-1.05","-0.72","-1.09"," 0.90","-0.60"," 1.44"," 0.48","-0.33"," 0.76"," 0.56"," 1.21","-0.82","-0.62"," 0.49","-0.65"," 0.53","-0.58"," 0.37","-3.02"," 0.66","-0.76","-0.98","-0.54"," 0.58","-0.65"," 0.54"," 0.43","-0.35","-1.08","-1.42"," 0.91"," 0.32"," 0.77"," 0.87"," 0.94"," 0.77","-1.45","-1.33"," 0.41"," 0.98"," 1.12"," 0.56","-1.10"," 0.29"," 2.02"," 0.90"," 0.68","-1.10","-1.21"," 0.74","-1.42","-3.41","-1.93","-0.51"," 1.37"," 0.26","-1.62"," 1.16","-0.48","-0.55"," 1.45","-0.41","-1.02","-1.23","-0.30"," 0.58"," 0.99"," 1.30","-0.51","-0.95"," 0.48"," 0.50"," 0.48"," 1.92","-1.56"," 0.41"," 0.54","-1.05","-0.66","-0.57","-0.31"," 0.26"," 3.64","-1.90"," 0.33"," 0.94"," 0.48","-0.47","-0.42","-0.44"," 2.36"," 0.91"," 0.61","-1.39"," 3.51"," 1.06","-0.60"," 1.50","-1.63"," 0.37"," 0.52"," 1.92"," 2.60","-0.86"," 0.35"," 0.43"," 0.78","-1.38"," 0.36"," 0.93"," 2.56","-0.49","-0.79"," 1.10","-0.56","-0.55","-0.35","-0.53","-2.97"," 0.80"," 0.54","-1.08","-0.41"," 0.79","-0.36"," 0.60"," 1.65"," 0.40","-0.41"," 0.95"," 0.65"," 0.57","-1.55","-1.57"," 0.95","-0.39"," 0.48"," 0.43","-2.31","-1.59","-0.74","-0.99"," 0.36"," 0.32"," 2.73","-0.88"," 0.48"," 0.78","-1.53","-0.54","-1.73","-1.11","-1.76","-0.79"," 0.36"," 0.50"," 0.30"," 0.62"," 0.35","-0.35"," 0.42","-0.40","-0.94","-0.33"," 0.98","-0.39","-2.15"," 1.03"," 0.85","-0.74"," 0.66"," 0.88","-0.62"," 0.56","-0.46","-0.41"," 0.40"," 1.02"," 1.74"," 0.61"," 0.39","-1.09","-0.54"," 0.86"," 0.98","-0.63"," 1.35","-0.54","-1.51"," 0.30"," 0.31","-1.84","-0.46"," 0.63"," 2.63"," 0.88","-0.53","-3.01","-0.43"," 0.45","-0.90"," 0.40","-0.31","-0.55"," 1.08"," 2.81","-0.76","-1.74","-0.77"," 0.85"," 0.64","-0.46"," 0.34","-0.76"," 2.34"," 0.35","-0.70","-0.64","-0.39"," 0.83"," 0.43","-0.91","-0.41"," 0.42","-0.54","-0.51"," 0.57","-0.44"," 0.41","-0.96","-1.05","-2.39"," 2.87"," 0.62","-1.51"," 0.41","-0.61","-0.89","-0.32"," 1.63"," 1.12","-0.68"," 0.36","-0.68"," 1.38","-1.40","-1.03"," 0.70"," 1.26"," 0.54"," 0.48","-0.68"," 0.35","-0.79","-0.75","-0.70"," 2.54"," 1.04"," 0.70"," 0.53"," 0.63"," 0.40"," 0.97"," 0.42"," 1.07"," 1.74"," 1.02"," 0.98"," 1.30","-0.95"," 4.62","-2.32"," 0.33"," 0.56"," 1.05","-0.60","-0.38"," 1.16","-1.13"," 0.46","-1.55","-1.33","-0.48","-0.82","-0.42","-1.94"," 0.53"," 0.51"," 1.80","-0.41","-1.12","-0.34"," 0.61","-0.37","-0.42","-1.97"," 0.47","-1.79"," 0.48"," 0.40"," 0.97"," 0.88"," 4.16"," 0.35","-0.52"," 0.63","-0.31"," 1.58"," 1.78","-0.92"," 0.56","-0.39","-0.72"," 0.45"," 1.03"," 0.80"," 0.58"," 0.82"," 0.96"," 1.99"," 0.46"," 0.68"," 0.42"," 0.51","-0.34","-0.56","-1.01"," 0.45","-0.42","-0.60"," 0.91","-1.68"," 0.34"," 1.21"," 0.64"," 0.90"," 0.67","-2.15"," 0.53"," 0.50","-0.52"," 0.31"," 0.87"," 0.43"," 1.52"," 0.95"," 1.10","-0.47"," 0.78"," 0.74"," 0.37","-1.22","-2.62"," 0.54"," 0.95"," 0.96","-2.33"," 0.68","-0.70","-1.25"," 0.36","-1.70","-0.80","-0.32","-0.35"," 0.90","-0.63","-0.92"," 0.73","-0.34","-1.24","-1.10"," 0.82","-1.81","-0.95"," 0.42","-2.02","-1.00","-0.55"," 0.37","-1.31","-1.30","-0.47"," 0.58"," 2.20"," 0.66"," 0.93"," 0.36","-1.60","-1.27"," 1.00"," 0.56","-0.47"," 0.74"," 0.78","-0.46"," 0.52","-0.52"," 1.45","-1.70"," 0.42","-0.91"," 0.78","-0.71","-1.03","-0.52"," 0.46"," 0.89"," 1.68","-0.41","-0.80","-0.86"," 1.37"," 1.31","-2.80"," 0.46"," 1.30","-0.78"," 4.92","-0.46"," 0.58","-0.93"," 0.44"," 0.87","-0.58","-0.36","-0.73","-0.37"," 0.43"," 0.54"," 0.50"," 0.32"," 0.31"," 0.53"," 0.42","-0.77","-1.81","-1.12"," 0.44"," 0.29","-0.90","-0.43","-1.23","-0.43","-0.84","-0.50","-1.88","-0.58"," 0.51","-0.64","-0.38","-1.13","-0.94"," 1.03"," 1.78","-0.69","-1.31"," 0.63","-1.22","-2.39"," 1.38"," 0.63"," 0.31"," 0.56","-0.59","-0.61"," 0.32"," 0.46"," 0.94"," 0.49"," 1.14","-0.59","-0.59","-0.78","-0.58","-0.50","-2.31"," 0.43","-1.52","-0.69"," 0.55"," 1.83"," 0.57"," 1.90"," 0.89","-0.69"],["0.123","0.103","0.183","0.354","0.190","0.112","0.100","0.140","0.134","0.130","0.131","0.133","0.218","0.109","0.119","0.280","0.076","0.119","0.205","0.118","0.237","0.181","0.169","0.112","0.134","0.204","0.133","0.159","0.123","0.181","0.114","0.161","0.086","0.108","0.144","0.151","0.186","0.166","0.122","0.115","0.100","0.570","0.114","0.096","0.257","0.269","0.342","0.355","0.141","0.286","0.103","0.331","0.108","0.301","0.114","0.102","0.099","0.101","0.112","0.144","0.500","0.254","0.335","0.181","0.104","0.115","0.136","0.094","0.108","0.162","0.183","0.224","0.149","0.127","0.280","0.162","0.127","0.125","0.101","0.194","0.116","0.163","0.124","0.161","0.188","0.172","0.292","0.219","0.126","0.168","0.115","0.206","0.109","0.135","0.222","0.100","0.168","0.253","0.093","0.147","0.112","0.185","0.190","0.125","0.243","0.095","0.128","0.105","0.133","0.124","0.227","0.118","0.189","0.174","0.279","0.140","0.125","0.147","0.101","0.190","0.082","0.125","0.132","0.096","0.121","0.097","0.090","0.140","0.153","0.103","0.171","0.125","0.169","0.170","0.199","0.112","0.107","0.124","0.099","0.151","0.210","0.089","0.162","0.196","0.113","0.131","0.106","0.144","0.148","0.204","0.134","0.144","0.113","0.325","0.136","0.109","0.347","0.109","0.153","0.124","0.121","0.170","0.118","0.111","0.123","0.224","0.100","0.124","0.241","0.642","0.139","0.143","0.139","0.221","0.146","0.165","0.465","0.233","0.126","0.485","0.115","0.126","0.352","0.195","0.127","0.155","0.632","0.120","0.102","0.133","0.116","0.082","0.138","0.277","0.109","0.100","0.174","0.108","0.147","0.187","0.117","0.271","0.146","0.227","0.130","0.100","0.181","0.431","0.108","0.094","0.219","0.124","0.120","0.154","0.148","0.107","0.158","0.125","0.141","0.162","0.119","0.139","0.141","0.143","0.224","0.101","0.104","0.129","0.356","0.185","0.195","0.220","0.230","0.139","0.144","0.218","0.182","0.221","0.214","0.176","0.114","0.544","0.145","0.224","0.318","0.130","0.140","0.129","0.157","0.097","0.144","0.130","0.123","0.140","0.147","0.152","0.175","0.126","0.102","0.346","0.344","0.226","0.145","0.115","0.132","0.108","0.173","0.247","0.156","0.104","0.183","0.130","0.104","0.122","0.086","0.161","0.096","0.144","0.188","0.328","0.174","0.905","0.188","0.122","0.120","0.172","0.197","0.226","0.470","0.154","0.176","0.106","0.305","0.128","0.246","0.163","0.176","0.176","0.124","0.170","0.163","0.115","0.165","0.247","0.194","0.112","0.197","0.104","0.181","0.155","0.193","0.176","0.161","0.126","0.102","0.131","0.362","0.120","0.131","0.198","0.159","0.239","0.326","0.111","0.375","0.158","0.273","0.127","0.102","0.095","0.160","0.201","0.108","0.096","0.141","0.150","0.174","0.129","0.226","0.102","0.161","0.095","0.104","0.149","0.101","0.098","0.125","0.132","0.101","0.192","0.245","0.240","0.106","0.182","0.201","0.335","0.518","0.160","0.094","0.286","0.242","0.142","0.247","0.109","0.239","0.143","0.115","0.148","0.163","0.401","0.289","0.122","0.121","0.158","0.161","0.176","0.100","0.420","0.133","0.092","0.219","0.172","0.150","0.172","0.109","0.129","0.103","0.259","0.484","0.253","0.098","0.180","0.215","0.286","0.223","0.215","0.279","0.101","0.143","0.241","0.138","0.333","0.078","0.391","0.262","0.150","0.373","0.225","0.189","0.215","0.295","0.288","0.118","0.240","0.085","0.561","0.105","0.148","0.151","0.140","0.106","0.194","0.339","0.104","0.191","0.289","0.309","0.135","0.189","0.134","0.155","0.138","0.257","0.257","0.102","0.101","0.274","0.090","0.198","0.107","0.091","0.278","0.248","0.113","0.220","0.139","0.152","0.132","0.146","0.630","0.118","0.135","0.242","0.215","0.119","0.146","0.360","0.227","0.124","0.136","0.159","0.900","0.220","0.104","0.096","0.176","0.367","0.122","0.217","0.137","0.137","0.195","0.167","0.098","0.191","0.094","0.119","0.254","0.262","0.101","0.182","0.112","0.261","0.118","0.159","0.236","0.118","0.107","0.159","0.184","0.120","0.379","0.489","0.281","0.120","0.141","0.119","0.530","0.240","0.113","0.135","0.101","0.103","0.831","0.161","0.105","0.202","0.389","0.109","0.548","0.137","0.569","0.137","0.123","0.154","0.091","0.206","0.098","0.108","0.135","0.122","0.150","0.113","0.215","0.107","0.491","0.216","0.216","0.164","0.130","0.115","0.156","0.121","0.144","0.132","0.114","0.347","0.307","0.145","0.119","0.266","0.155","0.154","0.115","0.214","0.172","0.169","0.436","0.090","0.104","0.212","0.143","0.160","0.455","0.102","0.139","0.330","0.144","0.137","0.173","0.128","0.110","0.144","0.169","0.391","0.240","0.357","0.134","0.145","0.176","0.120","0.094","0.140","0.234","0.111","0.143","0.132","0.118","0.136","0.141","0.220","0.113","0.131","0.171","0.154","0.153","0.134","0.122","0.338","0.125","0.304","0.561","0.163","0.383","0.117","0.107","0.150","0.109","0.254","0.190","0.126","0.115","0.106","0.409","0.182","0.270","0.219","0.427","0.182","0.118","0.140","0.098","0.190","0.109","0.164","0.203","0.155","0.133","0.127","0.122","0.117","0.232","0.136","0.345","0.507","0.171","0.198","0.132","0.135","0.169","0.591","0.099","0.164","0.120","0.145","0.118","0.096","0.176","0.130","0.198","0.259","0.148","0.198","0.116","0.313","0.124","0.099","0.262","0.118","0.253","0.116","0.118","0.125","0.142","0.546","0.134","0.473","0.153","0.128","0.345","0.145","0.233","0.106","0.146","0.108","0.108","0.121","0.190","0.107","0.108","0.123","0.238","0.145","0.159","0.138","0.181","0.162","0.235","0.176","0.106","0.180","0.147","0.138","0.107","0.142","0.358","0.116","0.119","0.163","0.208","0.579","0.109","0.223","0.123","0.167","0.141","0.617","0.179","0.169","0.122","0.108","0.142","0.101","0.517","0.100","0.349","0.120","0.188","0.224","0.117","0.351","0.346","0.135","0.158","0.304","0.177","0.177","0.157","0.349","0.095","0.516","0.097","0.108","0.091","0.174","0.168","0.136","0.102","0.104","0.324","0.320","0.159","0.637","0.246","0.112","0.241","0.208","0.151","0.121","0.218","0.382","0.157","0.157","0.198","0.101","0.171","0.113","0.240","0.281","0.177","0.127","0.146","0.182","0.194","0.147","0.175","0.149","0.208","0.602","0.147","0.288","0.121","0.235","0.276","0.156","0.145","0.235","0.482","0.134","0.115","0.182","0.166","0.128","0.575","0.114","0.416","0.196","0.496","0.159","0.113","0.219","0.131","0.282","0.134","0.109","0.166","0.118","0.136","0.110","0.154","0.093","0.079","0.185","0.129","0.151","0.243","0.228","0.150","0.102","0.242","0.132","0.312","0.128","0.170","0.172","0.361","0.149","0.132","0.163","0.110","0.206","0.262","0.241","0.276","0.200","0.336","0.134","0.298","0.270","0.402","0.147","0.111","0.126","0.182","0.120","0.100","0.138","0.199","0.143","0.208","0.207","0.159","0.122","0.154","0.099","0.292","0.152","0.181","0.163","0.137","0.420","0.133","0.191","0.117","0.170"],[" -5.0"," -2.9","-14.7"," 3.0"," -6.8"," 3.6"," -4.9"," -3.0"," 3.0"," 3.5"," 4.0"," -4.8"," -2.9"," -4.3"," -4.4"," 7.3"," 4.9"," -4.4"," -4.2"," -2.8"," 3.0"," -4.1"," 7.2"," 2.9"," -3.5"," -2.9"," -3.5"," -4.4"," 4.2"," -3.7"," -6.0"," 7.8"," -4.1"," -4.4","-10.3"," -8.9"," -9.2"," -4.0"," -7.7"," 3.4"," 5.1"," 3.3"," -4.2"," 7.8"," -3.0"," -3.8"," 4.4"," 3.3"," 4.7"," 7.4"," -3.4"," 3.1"," -3.8"," -3.1"," -5.6"," -7.0"," -9.3"," -5.3"," 3.3"," 22.2"," 3.6"," -3.1"," -5.9","-11.9"," -7.0"," 3.6"," 5.1"," 3.7","-10.0"," 2.9"," -2.8"," -3.4"," -3.1"," 3.4"," -3.0"," -5.2"," 3.5"," 6.3"," 3.3"," -5.6"," 2.8"," -5.6"," -3.2"," -3.2"," 3.9"," 3.9"," 3.1"," -3.4"," 6.5"," 3.6"," -5.8"," -5.1"," 3.1"," -3.8"," -4.7"," -3.0"," 3.2"," 5.7"," 5.2"," -3.1"," 3.4"," -3.2"," 4.0"," 4.5"," -3.7"," -5.3"," 4.0"," 6.3"," 3.5"," -3.6"," -3.8"," -3.9"," 3.7"," -4.3"," -7.3"," 5.4"," -2.8"," -3.3"," -4.5"," -4.9"," -4.9"," 4.6"," -3.3"," -4.5"," 2.9"," 5.0"," 5.4"," -3.2"," 4.1"," -4.8"," 5.1"," -3.1"," -2.9"," 3.0"," -3.0"," 3.2"," 3.0"," -4.5"," 4.4"," 6.6"," 4.2"," -5.9"," -6.6"," 4.7"," -4.7"," 3.7"," 4.0"," 3.3"," -3.6"," 9.7"," 3.3"," -3.3"," -5.6"," -6.5"," -2.9"," 6.3"," 4.3"," 3.6"," -4.2"," 3.4"," 2.9"," 4.6"," -3.1"," 2.8"," -3.6"," 3.8"," 4.7"," 4.3"," -3.0"," -2.9"," 3.3"," -3.4"," 11.0"," 7.1"," 4.1"," 4.3"," 9.9"," 9.8"," -4.9"," -3.1"," -3.2"," -3.0"," -3.0"," -7.6","-22.8"," -3.0"," -2.9"," 4.2"," -5.3"," 3.7"," 2.8"," 3.6"," -2.9"," 4.1"," -3.1"," -3.9"," -3.9"," -3.6"," -2.9"," 5.4"," -2.9"," -4.3"," 2.9"," 10.4"," 3.3"," -5.3"," 3.7"," 2.9"," 6.1"," 12.7"," 5.4"," -7.3"," 3.1"," 3.2"," 3.0"," 4.8"," 5.3"," 4.4"," 3.7"," 5.2"," -5.4"," 3.4"," -4.1"," -4.2"," -2.8"," -6.4"," -5.8"," 2.8"," -3.6"," 3.6"," 3.8"," 6.1"," -4.3"," 3.8"," 2.8"," -3.0"," 5.8"," 3.8"," 4.5"," 3.1"," 5.4"," 4.4"," 4.9"," -6.4"," 4.6"," 3.5"," 3.2"," 3.4"," -3.4"," 22.7"," 3.8"," -4.2"," 6.6"," -3.2"," 3.4"," 16.1"," -3.5"," -2.8"," -7.2"," 8.2"," -3.3"," 3.4"," -4.6"," 8.2"," -3.6"," -3.7"," -3.0"," 5.0"," -3.2"," 5.6"," -3.4"," 3.1"," 3.0"," 5.7"," 2.9"," -3.1"," 5.9"," 3.8"," -3.0"," -6.4"," 2.9"," 3.6"," -3.1"," 3.0"," 3.4"," -6.2"," 2.8"," -3.4"," -3.4"," 3.1"," -3.7"," 4.5"," -3.1"," -2.9"," -2.8"," 3.4"," -3.1"," -5.8"," 3.8"," -3.3"," -7.3"," 3.4"," -4.2"," 5.3"," 3.1"," -3.2"," -4.2"," 4.2"," -4.5"," 4.3"," 7.3"," -7.0"," 5.3"," 6.5"," 8.3"," -4.8"," 3.0"," -4.2"," -5.5"," -3.7"," 3.1"," 5.8"," 5.9"," 3.5"," -4.3"," -6.1"," 6.8"," -3.7"," 2.9"," -3.8"," 5.4"," -3.2"," -3.2"," -4.8"," 7.6"," 4.9"," 3.1"," 3.2"," -3.8"," 3.6"," 7.4"," 4.2"," -3.2"," 6.3"," 5.6"," -4.0"," -4.2"," -2.9"," 4.2"," 3.4"," 3.3","-11.1"," -3.0"," -4.3"," -3.6"," -2.9"," -4.5"," -4.7"," 3.6"," -3.7"," -3.0"," -7.7"," 3.6"," -5.5"," 6.0"," 3.4"," -2.9"," 5.1"," 3.4"," 3.0"," -2.8"," -5.0"," 4.1"," -4.1"," 3.3"," -3.3"," 3.8"," -7.2"," 4.9"," -8.3"," -4.5"," -3.1"," 3.9"," -3.8"," 4.9"," 3.3"," -3.4"," -4.2"," -2.9"," 3.6"," 3.3"," 4.3"," 4.1"," 3.3"," 3.5"," -6.8"," -4.8"," 4.1"," 6.9"," 4.7"," 4.0"," -3.3"," 3.8"," 5.2"," 3.4"," 4.5"," -2.9"," -5.4"," 3.9"," -6.6","-11.6"," -6.7"," -4.4"," 5.7"," 3.0"," -2.9"," 11.1"," -3.3"," -3.6"," 10.4"," -3.8"," -5.3"," -3.6"," -2.9"," 3.1"," 3.4"," 4.2"," -3.8"," -5.1"," 3.5"," 3.2"," 3.5"," 7.5"," -6.1"," 4.0"," 5.4"," -3.8"," -7.3"," -2.9"," -2.9"," 2.9"," 13.1"," -7.7"," 2.9"," 4.3"," 3.5"," -3.1"," -3.1"," -3.0"," 3.7"," 7.7"," 4.5"," -5.8"," 16.4"," 8.9"," -4.1"," 4.2"," -7.2"," 3.0"," 3.8"," 12.1"," 2.9"," -3.9"," 3.4"," 4.5"," 4.4"," -3.8"," 3.0"," 4.3"," 18.6"," -3.6"," -4.0"," 6.6"," -5.8"," -2.9"," -3.7"," -4.5","-11.7"," 3.1"," 5.3"," -5.9"," -3.7"," 3.0"," -3.1"," 3.8"," 7.0"," 3.4"," -3.8"," 6.0"," 3.5"," 4.7"," -4.1"," -3.2"," 3.4"," -3.2"," 3.4"," 3.6"," -4.4"," -6.6"," -6.6"," -7.3"," 3.6"," 3.1"," 3.3"," -5.5"," 4.6"," 3.9"," -3.9"," -5.0"," -3.2"," -8.1"," -3.1"," -5.8"," 2.9"," 3.3"," 3.3"," 3.0"," 3.6"," -3.3"," 3.1"," -3.3"," -6.3"," -2.9"," 4.5"," -3.7"," -4.4"," 4.8"," 4.0"," -4.5"," 5.1"," 7.6"," -4.0"," 4.6"," -3.2"," -3.1"," 3.5"," 2.9"," 5.7"," 4.2"," 3.3"," -4.1"," -3.5"," 5.6"," 8.5"," -2.9"," 7.8"," -3.2"," -3.5"," 3.3"," 3.0"," -8.7"," -3.2"," 4.0"," 5.8"," 8.5"," -3.8"," -9.1"," -3.0"," 3.3"," -5.2"," 3.1"," -2.8"," -3.8"," 6.4"," 7.2"," -3.2"," -4.9"," -5.7"," 5.9"," 3.6"," -3.8"," 3.6"," -5.4"," 10.0"," 3.2"," -4.9"," -4.9"," -3.3"," 6.1"," 3.0"," -4.1"," -3.6"," 3.2"," -3.2"," -3.3"," 3.7"," -3.3"," 3.4"," -2.8"," -8.4"," -7.9"," 5.1"," 3.8"," -3.9"," 3.5"," -5.7"," -5.9"," -2.9"," 6.4"," 5.9"," -5.4"," 3.1"," -6.4"," 3.4"," -7.6"," -3.8"," 3.2"," 3.0"," 3.0"," 4.1"," -4.9"," 3.6"," -4.2"," -6.9"," -4.3"," 12.5"," 6.7"," 5.3"," 4.2"," 5.2"," 3.4"," 4.2"," 3.1"," 3.1"," 3.4"," 6.0"," 5.0"," 9.9"," -7.0"," 27.4"," -3.9"," 3.3"," 3.4"," 8.8"," -4.2"," -3.2"," 12.0"," -6.4"," 3.6"," -7.8"," -5.1"," -3.2"," -4.1"," -3.6"," -6.2"," 4.3"," 5.1"," 6.9"," -3.5"," -4.4"," -2.9"," 5.2"," -3.0"," -3.0"," -3.6"," 3.5"," -3.8"," 3.1"," 3.2"," 2.8"," 6.0"," 17.9"," 3.3"," -3.6"," 5.9"," -2.9"," 13.0"," 9.4"," -8.6"," 5.2"," -3.2"," -3.0"," 3.1"," 6.5"," 5.8"," 3.2"," 5.1"," 4.1"," 11.3"," 4.3"," 3.8"," 2.9"," 3.7"," -3.1"," -4.0"," -2.8"," 3.9"," -3.5"," -3.7"," 4.4"," -2.9"," 3.1"," 5.4"," 5.2"," 5.4"," 4.8"," -3.5"," 3.0"," 3.0"," -4.3"," 2.8"," 6.1"," 4.3"," 2.9"," 9.5"," 3.1"," -3.9"," 4.2"," 3.3"," 3.1"," -3.5"," -7.6"," 4.0"," 6.0"," 3.2","-13.2"," 3.8"," -4.5"," -3.6"," 3.8"," -3.3"," -8.3"," -3.0"," -3.9"," 5.2"," -3.8"," -6.8"," 7.2"," -3.3"," -3.8"," -3.5"," 5.2"," -2.8"," -3.9"," 3.7"," -8.4"," -4.8"," -3.6"," 3.1"," -6.0"," -3.4"," -3.0"," 3.7"," 11.1"," 6.6"," 5.4"," 3.2"," -6.7"," -4.5"," 5.7"," 4.4"," -3.2"," 4.1"," 4.0"," -3.1"," 3.0"," -3.5"," 7.0"," -2.8"," 2.8"," -3.2"," 6.5"," -3.0"," -3.7"," -3.3"," 3.2"," 3.8"," 3.5"," -3.0"," -6.9"," -4.8"," 8.2"," 10.2"," -4.9"," 4.0"," 3.1"," -4.0"," 9.9"," -2.9"," 5.1"," -4.2"," 3.4"," 3.1"," -4.3"," -3.3"," -4.4"," -3.1"," 3.2"," 4.9"," 3.3"," 3.4"," 4.0"," 2.9"," 3.2"," -5.1"," -7.4"," -4.9"," 3.0"," 2.8"," -3.7"," -3.3"," -3.9"," -3.3"," -5.0"," -2.9"," -5.2"," -3.9"," 3.9"," -3.9"," -3.4"," -5.5"," -3.6"," 4.3"," 6.5"," -3.4"," -3.9"," 4.7"," -4.1"," -8.8"," 3.4"," 4.3"," 2.8"," 4.4"," -3.2"," -5.1"," 3.2"," 3.3"," 4.7"," 3.4"," 5.5"," -2.8"," -3.7"," -6.4"," -3.8"," -5.1"," -7.9"," 2.9"," -8.4"," -4.2"," 4.0"," 4.4"," 4.2"," 9.9"," 7.6"," -4.1"],[" 5.1e-07"," 3.8e-03"," 9.5e-49"," 2.6e-03"," 1.1e-11"," 3.3e-04"," 8.7e-07"," 2.6e-03"," 2.9e-03"," 5.0e-04"," 5.3e-05"," 1.6e-06"," 3.2e-03"," 2.0e-05"," 1.0e-05"," 3.5e-13"," 9.9e-07"," 8.7e-06"," 2.6e-05"," 5.0e-03"," 2.6e-03"," 4.1e-05"," 4.3e-13"," 3.8e-03"," 4.5e-04"," 3.3e-03"," 4.0e-04"," 8.6e-06"," 2.2e-05"," 2.1e-04"," 2.4e-09"," 7.9e-15"," 5.1e-05"," 8.7e-06"," 4.4e-25"," 4.6e-19"," 2.9e-20"," 6.3e-05"," 1.5e-14"," 6.7e-04"," 2.8e-07"," 1.0e-03"," 2.8e-05"," 8.6e-15"," 2.7e-03"," 1.8e-04"," 9.8e-06"," 1.1e-03"," 2.1e-06"," 9.9e-14"," 6.8e-04"," 1.9e-03"," 1.4e-04"," 2.0e-03"," 1.7e-08"," 2.7e-12"," 2.0e-20"," 1.1e-07"," 1.1e-03","9.6e-109"," 3.2e-04"," 1.9e-03"," 3.2e-09"," 8.9e-33"," 1.9e-12"," 3.7e-04"," 3.7e-07"," 2.5e-04"," 2.1e-23"," 4.3e-03"," 4.9e-03"," 7.0e-04"," 1.7e-03"," 6.4e-04"," 2.9e-03"," 2.0e-07"," 4.4e-04"," 3.1e-10"," 9.3e-04"," 2.8e-08"," 5.1e-03"," 2.1e-08"," 1.2e-03"," 1.4e-03"," 8.7e-05"," 8.8e-05"," 2.1e-03"," 7.9e-04"," 8.2e-11"," 2.6e-04"," 7.2e-09"," 3.4e-07"," 2.2e-03"," 1.7e-04"," 2.4e-06"," 3.1e-03"," 1.2e-03"," 1.3e-08"," 1.6e-07"," 2.1e-03"," 6.5e-04"," 1.6e-03"," 6.3e-05"," 6.2e-06"," 2.4e-04"," 1.2e-07"," 5.9e-05"," 3.1e-10"," 4.0e-04"," 3.2e-04"," 1.5e-04"," 8.3e-05"," 2.5e-04"," 1.4e-05"," 2.1e-13"," 7.0e-08"," 4.4e-03"," 8.2e-04"," 7.7e-06"," 1.2e-06"," 9.9e-07"," 3.5e-06"," 9.9e-04"," 6.3e-06"," 4.1e-03"," 4.4e-07"," 6.5e-08"," 1.5e-03"," 3.6e-05"," 1.3e-06"," 3.3e-07"," 2.2e-03"," 3.9e-03"," 2.3e-03"," 2.6e-03"," 1.4e-03"," 2.8e-03"," 5.9e-06"," 1.3e-05"," 5.2e-11"," 2.3e-05"," 2.7e-09"," 4.8e-11"," 2.5e-06"," 3.3e-06"," 2.1e-04"," 6.3e-05"," 9.2e-04"," 3.5e-04"," 3.5e-22"," 1.0e-03"," 1.0e-03"," 1.7e-08"," 6.5e-11"," 4.0e-03"," 3.8e-10"," 1.8e-05"," 3.8e-04"," 2.5e-05"," 5.7e-04"," 3.8e-03"," 4.7e-06"," 1.9e-03"," 5.0e-03"," 3.8e-04"," 1.4e-04"," 2.3e-06"," 2.1e-05"," 2.5e-03"," 3.8e-03"," 1.1e-03"," 6.9e-04"," 6.0e-28"," 1.0e-12"," 4.0e-05"," 1.5e-05"," 6.1e-23"," 8.9e-23"," 8.4e-07"," 1.9e-03"," 1.3e-03"," 2.5e-03"," 2.4e-03"," 2.8e-14","1.5e-115"," 2.7e-03"," 3.5e-03"," 2.7e-05"," 9.1e-08"," 2.0e-04"," 4.5e-03"," 2.8e-04"," 4.2e-03"," 4.8e-05"," 2.2e-03"," 9.4e-05"," 8.5e-05"," 2.7e-04"," 3.6e-03"," 7.0e-08"," 3.3e-03"," 2.0e-05"," 3.5e-03"," 2.2e-25"," 9.8e-04"," 9.6e-08"," 1.9e-04"," 3.2e-03"," 1.2e-09"," 3.8e-37"," 6.7e-08"," 3.8e-13"," 2.2e-03"," 1.2e-03"," 2.8e-03"," 2.0e-06"," 9.3e-08"," 1.0e-05"," 2.0e-04"," 2.3e-07"," 5.2e-08"," 7.3e-04"," 4.1e-05"," 3.3e-05"," 4.7e-03"," 1.6e-10"," 5.8e-09"," 4.8e-03"," 2.8e-04"," 2.7e-04"," 1.3e-04"," 8.5e-10"," 1.8e-05"," 1.3e-04"," 4.8e-03"," 2.8e-03"," 8.2e-09"," 1.6e-04"," 7.7e-06"," 2.1e-03"," 8.2e-08"," 9.9e-06"," 8.5e-07"," 1.3e-10"," 3.8e-06"," 5.4e-04"," 1.2e-03"," 6.9e-04"," 7.3e-04","1.3e-113"," 1.6e-04"," 2.7e-05"," 4.1e-11"," 1.3e-03"," 5.8e-04"," 2.9e-58"," 4.2e-04"," 4.5e-03"," 8.4e-13"," 2.2e-16"," 9.6e-04"," 7.2e-04"," 5.1e-06"," 2.0e-16"," 2.8e-04"," 2.2e-04"," 3.0e-03"," 5.2e-07"," 1.6e-03"," 1.9e-08"," 6.0e-04"," 1.9e-03"," 2.3e-03"," 9.2e-09"," 3.7e-03"," 1.9e-03"," 4.2e-09"," 1.6e-04"," 2.5e-03"," 2.0e-10"," 4.0e-03"," 3.8e-04"," 1.8e-03"," 2.9e-03"," 7.4e-04"," 4.5e-10"," 4.8e-03"," 7.4e-04"," 7.4e-04"," 2.0e-03"," 1.9e-04"," 7.3e-06"," 1.9e-03"," 3.5e-03"," 4.9e-03"," 7.4e-04"," 2.0e-03"," 6.4e-09"," 1.4e-04"," 9.8e-04"," 4.1e-13"," 6.5e-04"," 3.2e-05"," 9.1e-08"," 2.2e-03"," 1.4e-03"," 2.8e-05"," 2.3e-05"," 7.8e-06"," 1.4e-05"," 2.4e-13"," 3.2e-12"," 1.1e-07"," 8.0e-11"," 8.1e-17"," 2.0e-06"," 3.1e-03"," 2.3e-05"," 3.1e-08"," 2.0e-04"," 2.2e-03"," 6.5e-09"," 3.2e-09"," 5.2e-04"," 1.9e-05"," 1.4e-09"," 1.3e-11"," 2.1e-04"," 4.1e-03"," 1.5e-04"," 8.8e-08"," 1.2e-03"," 1.6e-03"," 1.8e-06"," 3.1e-14"," 1.0e-06"," 2.0e-03"," 1.4e-03"," 1.2e-04"," 3.7e-04"," 1.7e-13"," 2.8e-05"," 1.6e-03"," 3.0e-10"," 2.6e-08"," 5.7e-05"," 3.1e-05"," 3.7e-03"," 2.2e-05"," 6.2e-04"," 8.3e-04"," 7.4e-29"," 2.6e-03"," 1.4e-05"," 3.6e-04"," 4.3e-03"," 5.8e-06"," 2.2e-06"," 2.7e-04"," 2.3e-04"," 2.8e-03"," 1.6e-14"," 2.9e-04"," 3.7e-08"," 1.8e-09"," 6.9e-04"," 3.7e-03"," 2.8e-07"," 6.3e-04"," 2.4e-03"," 4.6e-03"," 4.7e-07"," 5.1e-05"," 3.9e-05"," 1.1e-03"," 9.2e-04"," 1.7e-04"," 6.1e-13"," 8.6e-07"," 1.1e-16"," 7.2e-06"," 1.7e-03"," 1.1e-04"," 1.5e-04"," 9.0e-07"," 8.5e-04"," 6.9e-04"," 3.2e-05"," 3.4e-03"," 3.0e-04"," 9.9e-04"," 1.8e-05"," 5.1e-05"," 1.0e-03"," 5.4e-04"," 1.3e-11"," 2.0e-06"," 4.9e-05"," 6.8e-12"," 3.2e-06"," 5.3e-05"," 9.8e-04"," 1.6e-04"," 2.2e-07"," 5.7e-04"," 5.4e-06"," 3.2e-03"," 8.0e-08"," 9.1e-05"," 3.2e-11"," 5.3e-31"," 1.8e-11"," 1.3e-05"," 1.1e-08"," 2.3e-03"," 3.8e-03"," 2.0e-28"," 1.1e-03"," 2.9e-04"," 2.9e-25"," 1.2e-04"," 1.4e-07"," 2.9e-04"," 4.3e-03"," 2.2e-03"," 6.0e-04"," 2.5e-05"," 1.6e-04"," 4.2e-07"," 4.1e-04"," 1.3e-03"," 4.4e-04"," 7.6e-14"," 1.2e-09"," 7.0e-05"," 8.1e-08"," 1.2e-04"," 2.6e-13"," 4.1e-03"," 3.3e-03"," 3.5e-03"," 3.8e-39"," 1.7e-14"," 3.5e-03"," 1.9e-05"," 5.3e-04"," 2.1e-03"," 1.7e-03"," 2.5e-03"," 1.8e-04"," 1.2e-14"," 6.9e-06"," 8.7e-09"," 3.9e-60"," 5.1e-19"," 3.9e-05"," 3.0e-05"," 5.6e-13"," 2.9e-03"," 1.2e-04"," 1.2e-33"," 3.9e-03"," 8.6e-05"," 7.2e-04"," 8.5e-06"," 9.6e-06"," 1.7e-04"," 2.8e-03"," 2.0e-05"," 1.3e-77"," 3.4e-04"," 5.7e-05"," 4.3e-11"," 8.3e-09"," 4.0e-03"," 1.9e-04"," 7.6e-06"," 8.6e-32"," 2.2e-03"," 1.3e-07"," 3.7e-09"," 2.4e-04"," 2.6e-03"," 2.2e-03"," 1.7e-04"," 2.8e-12"," 7.4e-04"," 1.3e-04"," 2.0e-09"," 4.4e-04"," 2.3e-06"," 4.5e-05"," 1.3e-03"," 7.6e-04"," 1.2e-03"," 6.1e-04"," 3.2e-04"," 1.3e-05"," 3.3e-11"," 5.2e-11"," 2.3e-13"," 3.6e-04"," 2.1e-03"," 1.0e-03"," 4.1e-08"," 4.0e-06"," 1.1e-04"," 8.1e-05"," 6.3e-07"," 1.6e-03"," 6.4e-16"," 1.9e-03"," 7.9e-09"," 3.4e-03"," 1.1e-03"," 9.0e-04"," 2.8e-03"," 3.0e-04"," 1.1e-03"," 1.7e-03"," 1.1e-03"," 3.5e-10"," 3.5e-03"," 5.5e-06"," 2.4e-04"," 1.2e-05"," 1.8e-06"," 7.8e-05"," 7.0e-06"," 3.4e-07"," 2.4e-14"," 6.2e-05"," 3.8e-06"," 1.6e-03"," 1.7e-03"," 4.3e-04"," 3.2e-03"," 1.3e-08"," 2.3e-05"," 9.9e-04"," 4.4e-05"," 4.9e-04"," 2.5e-08"," 2.9e-17"," 3.4e-03"," 4.5e-15"," 1.5e-03"," 5.2e-04"," 9.4e-04"," 3.1e-03"," 3.8e-18"," 1.3e-03"," 7.7e-05"," 7.8e-09"," 1.3e-17"," 1.4e-04"," 7.4e-20"," 2.9e-03"," 9.9e-04"," 2.3e-07"," 1.7e-03"," 4.8e-03"," 1.3e-04"," 1.4e-10"," 7.1e-13"," 1.4e-03"," 1.2e-06"," 1.0e-08"," 4.4e-09"," 2.6e-04"," 1.3e-04"," 3.3e-04"," 5.2e-08"," 1.4e-23"," 1.4e-03"," 1.0e-06"," 1.2e-06"," 8.4e-04"," 9.4e-10"," 2.4e-03"," 3.7e-05"," 3.0e-04"," 1.6e-03"," 1.6e-03"," 8.6e-04"," 2.1e-04"," 1.1e-03"," 8.0e-04"," 4.6e-03"," 5.8e-17"," 3.7e-15"," 3.0e-07"," 1.5e-04"," 8.5e-05"," 5.1e-04"," 9.2e-09"," 2.8e-09"," 3.2e-03"," 1.4e-10"," 3.8e-09"," 8.2e-08"," 1.7e-03"," 1.9e-10"," 7.2e-04"," 2.0e-14"," 1.4e-04"," 1.4e-03"," 3.1e-03"," 2.9e-03"," 4.3e-05"," 1.1e-06"," 3.3e-04"," 3.0e-05"," 5.3e-12"," 1.7e-05"," 4.1e-36"," 1.9e-11"," 1.3e-07"," 3.0e-05"," 2.5e-07"," 5.9e-04"," 2.9e-05"," 1.9e-03"," 2.0e-03"," 6.1e-04"," 2.4e-09"," 7.3e-07"," 4.6e-23"," 2.3e-12","4.9e-165"," 8.7e-05"," 8.9e-04"," 6.5e-04"," 2.1e-18"," 3.1e-05"," 1.3e-03"," 2.1e-33"," 1.6e-10"," 3.6e-04"," 5.6e-15"," 3.1e-07"," 1.2e-03"," 3.5e-05"," 2.8e-04"," 6.1e-10"," 1.6e-05"," 3.0e-07"," 7.1e-12"," 4.3e-04"," 8.9e-06"," 3.5e-03"," 2.2e-07"," 3.1e-03"," 2.8e-03"," 3.2e-04"," 5.0e-04"," 1.5e-04"," 1.8e-03"," 1.6e-03"," 5.0e-03"," 1.6e-09"," 1.3e-71"," 9.1e-04"," 3.8e-04"," 4.3e-09"," 4.1e-03"," 8.7e-39"," 8.0e-21"," 8.6e-18"," 2.1e-07"," 1.3e-03"," 2.4e-03"," 1.8e-03"," 8.3e-11"," 7.8e-09"," 1.5e-03"," 4.2e-07"," 3.9e-05"," 1.7e-29"," 1.6e-05"," 1.5e-04"," 4.1e-03"," 2.0e-04"," 1.8e-03"," 7.7e-05"," 4.8e-03"," 1.2e-04"," 3.9e-04"," 2.1e-04"," 1.2e-05"," 3.7e-03"," 2.1e-03"," 5.7e-08"," 1.8e-07"," 7.5e-08"," 2.0e-06"," 5.0e-04"," 3.1e-03"," 3.1e-03"," 1.7e-05"," 4.5e-03"," 9.5e-10"," 2.0e-05"," 3.4e-03"," 1.5e-21"," 1.7e-03"," 8.0e-05"," 3.1e-05"," 9.1e-04"," 1.8e-03"," 5.2e-04"," 4.2e-14"," 5.7e-05"," 2.1e-09"," 1.6e-03"," 1.3e-39"," 1.2e-04"," 8.4e-06"," 3.3e-04"," 1.5e-04"," 9.7e-04"," 1.4e-16"," 2.7e-03"," 1.0e-04"," 2.1e-07"," 1.6e-04"," 1.3e-11"," 6.5e-13"," 9.7e-04"," 1.3e-04"," 5.6e-04"," 2.2e-07"," 4.5e-03"," 1.2e-04"," 2.0e-04"," 6.2e-17"," 1.4e-06"," 2.7e-04"," 2.0e-03"," 1.8e-09"," 6.8e-04"," 2.7e-03"," 2.4e-04"," 1.1e-28"," 4.3e-11"," 6.0e-08"," 1.4e-03"," 2.6e-11"," 6.2e-06"," 1.5e-08"," 9.7e-06"," 1.2e-03"," 5.1e-05"," 5.7e-05"," 1.8e-03"," 2.9e-03"," 5.4e-04"," 2.6e-12"," 4.9e-03"," 4.6e-03"," 1.6e-03"," 1.1e-10"," 2.6e-03"," 1.8e-04"," 8.3e-04"," 1.5e-03"," 1.4e-04"," 4.8e-04"," 2.4e-03"," 4.9e-12"," 1.9e-06"," 1.6e-16"," 1.8e-24"," 1.1e-06"," 6.6e-05"," 1.8e-03"," 7.4e-05"," 3.5e-23"," 3.6e-03"," 2.6e-07"," 2.3e-05"," 8.0e-04"," 2.0e-03"," 1.4e-05"," 8.6e-04"," 9.9e-06"," 1.9e-03"," 1.5e-03"," 1.1e-06"," 1.0e-03"," 6.1e-04"," 7.6e-05"," 4.1e-03"," 1.2e-03"," 3.8e-07"," 1.1e-13"," 8.7e-07"," 3.1e-03"," 4.9e-03"," 2.2e-04"," 1.1e-03"," 8.0e-05"," 8.5e-04"," 6.8e-07"," 3.5e-03"," 1.9e-07"," 9.9e-05"," 1.0e-04"," 8.4e-05"," 5.7e-04"," 3.5e-08"," 3.6e-04"," 1.9e-05"," 9.6e-11"," 6.1e-04"," 1.0e-04"," 2.2e-06"," 4.4e-05"," 9.1e-19"," 6.0e-04"," 1.9e-05"," 5.1e-03"," 9.1e-06"," 1.2e-03"," 3.0e-07"," 1.3e-03"," 8.6e-04"," 2.5e-06"," 7.0e-04"," 4.1e-08"," 4.4e-03"," 1.9e-04"," 1.8e-10"," 1.6e-04"," 3.8e-07"," 2.4e-15"," 4.3e-03"," 4.8e-17"," 2.3e-05"," 5.8e-05"," 1.3e-05"," 2.1e-05"," 3.7e-23"," 3.3e-14"," 4.4e-05"],[" 1.7e-05"," 3.9e-02"," 8.8e-46"," 2.9e-02"," 8.6e-10"," 5.3e-03"," 2.9e-05"," 2.9e-02"," 3.2e-02"," 7.7e-03"," 1.1e-03"," 5.0e-05"," 3.5e-02"," 4.9e-04"," 2.7e-04"," 3.5e-11"," 3.2e-05"," 2.3e-04"," 6.1e-04"," 5.0e-02"," 2.9e-02"," 9.0e-04"," 4.1e-11"," 3.9e-02"," 6.9e-03"," 3.5e-02"," 6.3e-03"," 2.3e-04"," 5.3e-04"," 3.6e-03"," 1.3e-07"," 1.0e-12"," 1.1e-03"," 2.3e-04"," 1.4e-22"," 9.1e-17"," 5.9e-18"," 1.3e-03"," 1.8e-12"," 9.7e-03"," 1.0e-05"," 1.3e-02"," 6.4e-04"," 1.1e-12"," 3.0e-02"," 3.1e-03"," 2.6e-04"," 1.5e-02"," 6.4e-05"," 1.1e-11"," 9.8e-03"," 2.3e-02"," 2.5e-03"," 2.4e-02"," 7.8e-07"," 2.3e-10"," 4.3e-18"," 4.4e-06"," 1.5e-02","2.0e-105"," 5.2e-03"," 2.3e-02"," 1.7e-07"," 4.3e-30"," 1.7e-10"," 5.9e-03"," 1.3e-05"," 4.2e-03"," 5.7e-21"," 4.4e-02"," 4.9e-02"," 1.0e-02"," 2.1e-02"," 9.3e-03"," 3.2e-02"," 7.6e-06"," 6.7e-03"," 1.9e-08"," 1.3e-02"," 1.3e-06"," 5.0e-02"," 9.8e-07"," 1.5e-02"," 1.8e-02"," 1.7e-03"," 1.7e-03"," 2.5e-02"," 1.1e-02"," 5.6e-09"," 4.4e-03"," 3.6e-07"," 1.2e-05"," 2.5e-02"," 3.1e-03"," 7.0e-05"," 3.3e-02"," 1.6e-02"," 6.0e-07"," 6.2e-06"," 2.4e-02"," 9.5e-03"," 2.0e-02"," 1.3e-03"," 1.7e-04"," 4.0e-03"," 4.6e-06"," 1.2e-03"," 1.9e-08"," 6.2e-03"," 5.2e-03"," 2.7e-03"," 1.7e-03"," 4.2e-03"," 3.5e-04"," 2.2e-11"," 2.9e-06"," 4.5e-02"," 1.1e-02"," 2.1e-04"," 3.7e-05"," 3.2e-05"," 1.0e-04"," 1.3e-02"," 1.8e-04"," 4.2e-02"," 1.5e-05"," 2.8e-06"," 1.9e-02"," 7.9e-04"," 4.2e-05"," 1.2e-05"," 2.5e-02"," 4.0e-02"," 2.7e-02"," 2.9e-02"," 1.7e-02"," 3.1e-02"," 1.7e-04"," 3.3e-04"," 3.7e-09"," 5.4e-04"," 1.5e-07"," 3.5e-09"," 7.5e-05"," 9.7e-05"," 3.6e-03"," 1.3e-03"," 1.2e-02"," 5.7e-03"," 8.2e-20"," 1.4e-02"," 1.3e-02"," 7.9e-07"," 4.5e-09"," 4.1e-02"," 2.3e-08"," 4.4e-04"," 6.0e-03"," 5.8e-04"," 8.5e-03"," 3.9e-02"," 1.4e-04"," 2.3e-02"," 4.9e-02"," 6.0e-03"," 2.5e-03"," 6.8e-05"," 5.0e-04"," 2.8e-02"," 3.9e-02"," 1.4e-02"," 1.0e-02"," 2.1e-25"," 9.3e-11"," 8.8e-04"," 3.7e-04"," 1.5e-20"," 2.1e-20"," 2.8e-05"," 2.3e-02"," 1.6e-02"," 2.9e-02"," 2.8e-02"," 3.2e-12","6.4e-112"," 3.0e-02"," 3.7e-02"," 6.3e-04"," 3.7e-06"," 3.5e-03"," 4.6e-02"," 4.6e-03"," 4.3e-02"," 1.0e-03"," 2.5e-02"," 1.8e-03"," 1.7e-03"," 4.5e-03"," 3.8e-02"," 2.9e-06"," 3.5e-02"," 4.9e-04"," 3.7e-02"," 7.3e-23"," 1.3e-02"," 3.8e-06"," 3.3e-03"," 3.5e-02"," 6.9e-08"," 2.4e-34"," 2.9e-06"," 3.7e-11"," 2.6e-02"," 1.5e-02"," 3.1e-02"," 6.0e-05"," 3.8e-06"," 2.7e-04"," 3.5e-03"," 8.7e-06"," 2.2e-06"," 1.0e-02"," 9.0e-04"," 7.4e-04"," 4.7e-02"," 1.0e-08"," 3.0e-07"," 4.8e-02"," 4.6e-03"," 4.5e-03"," 2.5e-03"," 5.1e-08"," 4.6e-04"," 2.5e-03"," 4.8e-02"," 3.1e-02"," 4.0e-07"," 2.9e-03"," 2.1e-04"," 2.5e-02"," 3.4e-06"," 2.6e-04"," 2.8e-05"," 8.4e-09"," 1.1e-04"," 8.1e-03"," 1.6e-02"," 9.9e-03"," 1.0e-02","3.7e-110"," 2.9e-03"," 6.3e-04"," 3.1e-09"," 1.6e-02"," 8.7e-03"," 3.0e-55"," 6.5e-03"," 4.6e-02"," 7.6e-11"," 3.1e-14"," 1.3e-02"," 1.0e-02"," 1.5e-04"," 3.0e-14"," 4.6e-03"," 3.7e-03"," 3.2e-02"," 1.8e-05"," 1.9e-02"," 8.7e-07"," 8.9e-03"," 2.2e-02"," 2.6e-02"," 4.4e-07"," 3.8e-02"," 2.3e-02"," 2.2e-07"," 2.9e-03"," 2.9e-02"," 1.3e-08"," 4.1e-02"," 6.0e-03"," 2.2e-02"," 3.2e-02"," 1.0e-02"," 2.7e-08"," 4.8e-02"," 1.0e-02"," 1.0e-02"," 2.3e-02"," 3.4e-03"," 2.0e-04"," 2.2e-02"," 3.7e-02"," 4.9e-02"," 1.0e-02"," 2.3e-02"," 3.3e-07"," 2.5e-03"," 1.3e-02"," 4.0e-11"," 9.5e-03"," 7.2e-04"," 3.7e-06"," 2.5e-02"," 1.7e-02"," 6.4e-04"," 5.5e-04"," 2.1e-04"," 3.6e-04"," 2.5e-11"," 2.7e-10"," 4.5e-06"," 5.6e-09"," 1.3e-14"," 6.0e-05"," 3.3e-02"," 5.4e-04"," 1.4e-06"," 3.4e-03"," 2.5e-02"," 3.3e-07"," 1.7e-07"," 7.9e-03"," 4.7e-04"," 7.9e-08"," 1.0e-09"," 3.6e-03"," 4.2e-02"," 2.7e-03"," 3.6e-06"," 1.5e-02"," 2.0e-02"," 5.7e-05"," 3.5e-12"," 3.3e-05"," 2.3e-02"," 1.7e-02"," 2.3e-03"," 5.9e-03"," 1.7e-11"," 6.4e-04"," 2.0e-02"," 1.9e-08"," 1.2e-06"," 1.2e-03"," 6.9e-04"," 3.8e-02"," 5.2e-04"," 9.0e-03"," 1.2e-02"," 3.0e-26"," 2.9e-02"," 3.6e-04"," 5.8e-03"," 4.4e-02"," 1.6e-04"," 6.5e-05"," 4.5e-03"," 3.9e-03"," 3.1e-02"," 2.0e-12"," 4.7e-03"," 1.6e-06"," 1.0e-07"," 9.9e-03"," 3.8e-02"," 1.0e-05"," 9.2e-03"," 2.8e-02"," 4.6e-02"," 1.6e-05"," 1.1e-03"," 8.7e-04"," 1.4e-02"," 1.3e-02"," 3.0e-03"," 5.7e-11"," 2.8e-05"," 1.7e-14"," 2.0e-04"," 2.0e-02"," 2.2e-03"," 2.7e-03"," 2.9e-05"," 1.2e-02"," 9.9e-03"," 7.3e-04"," 3.6e-02"," 4.9e-03"," 1.3e-02"," 4.4e-04"," 1.1e-03"," 1.3e-02"," 8.1e-03"," 1.0e-09"," 6.0e-05"," 1.1e-03"," 5.5e-10"," 9.4e-05"," 1.1e-03"," 1.3e-02"," 2.9e-03"," 8.3e-06"," 8.5e-03"," 1.6e-04"," 3.4e-02"," 3.3e-06"," 1.8e-03"," 2.4e-09"," 2.3e-28"," 1.4e-09"," 3.4e-04"," 5.1e-07"," 2.7e-02"," 3.9e-02"," 7.3e-26"," 1.4e-02"," 4.8e-03"," 9.1e-23"," 2.3e-03"," 5.5e-06"," 4.8e-03"," 4.4e-02"," 2.5e-02"," 8.9e-03"," 5.8e-04"," 2.9e-03"," 1.4e-05"," 6.3e-03"," 1.7e-02"," 6.8e-03"," 8.3e-12"," 6.9e-08"," 1.4e-03"," 3.3e-06"," 2.4e-03"," 2.6e-11"," 4.2e-02"," 3.5e-02"," 3.7e-02"," 2.9e-36"," 2.0e-12"," 3.7e-02"," 4.7e-04"," 8.0e-03"," 2.4e-02"," 2.0e-02"," 2.8e-02"," 3.2e-03"," 1.5e-12"," 1.9e-04"," 4.2e-07"," 4.6e-57"," 9.8e-17"," 8.6e-04"," 6.9e-04"," 5.3e-11"," 3.2e-02"," 2.3e-03"," 6.6e-31"," 4.0e-02"," 1.7e-03"," 1.0e-02"," 2.3e-04"," 2.5e-04"," 3.1e-03"," 3.0e-02"," 4.8e-04"," 2.1e-74"," 5.5e-03"," 1.2e-03"," 3.1e-09"," 4.1e-07"," 4.1e-02"," 3.4e-03"," 2.1e-04"," 4.0e-29"," 2.5e-02"," 5.1e-06"," 2.0e-07"," 4.1e-03"," 2.9e-02"," 2.5e-02"," 3.1e-03"," 2.4e-10"," 1.0e-02"," 2.5e-03"," 1.1e-07"," 6.8e-03"," 6.8e-05"," 9.6e-04"," 1.7e-02"," 1.1e-02"," 1.6e-02"," 9.0e-03"," 5.2e-03"," 3.4e-04"," 2.5e-09"," 3.7e-09"," 2.3e-11"," 5.8e-03"," 2.5e-02"," 1.4e-02"," 1.8e-06"," 1.2e-04"," 2.2e-03"," 1.6e-03"," 2.1e-05"," 1.9e-02"," 9.1e-14"," 2.3e-02"," 3.9e-07"," 3.6e-02"," 1.5e-02"," 1.2e-02"," 3.1e-02"," 4.9e-03"," 1.4e-02"," 2.1e-02"," 1.4e-02"," 2.1e-08"," 3.6e-02"," 1.6e-04"," 4.0e-03"," 3.1e-04"," 5.6e-05"," 1.6e-03"," 1.9e-04"," 1.2e-05"," 2.9e-12"," 1.3e-03"," 1.1e-04"," 2.0e-02"," 2.1e-02"," 6.7e-03"," 3.4e-02"," 6.3e-07"," 5.4e-04"," 1.3e-02"," 9.6e-04"," 7.5e-03"," 1.2e-06"," 4.9e-15"," 3.6e-02"," 6.0e-13"," 1.9e-02"," 7.9e-03"," 1.3e-02"," 3.4e-02"," 6.9e-16"," 1.6e-02"," 1.6e-03"," 3.9e-07"," 2.3e-15"," 2.5e-03"," 1.5e-17"," 3.2e-02"," 1.3e-02"," 8.4e-06"," 2.1e-02"," 4.8e-02"," 2.4e-03"," 9.4e-09"," 6.5e-11"," 1.8e-02"," 3.7e-05"," 4.8e-07"," 2.3e-07"," 4.4e-03"," 2.5e-03"," 5.4e-03"," 2.3e-06"," 4.1e-21"," 1.8e-02"," 3.2e-05"," 3.7e-05"," 1.2e-02"," 5.5e-08"," 2.8e-02"," 8.2e-04"," 4.8e-03"," 1.9e-02"," 2.0e-02"," 1.2e-02"," 3.6e-03"," 1.5e-02"," 1.1e-02"," 4.6e-02"," 9.5e-15"," 5.0e-13"," 1.1e-05"," 2.8e-03"," 1.7e-03"," 7.8e-03"," 4.4e-07"," 1.5e-07"," 3.4e-02"," 9.0e-09"," 2.0e-07"," 3.4e-06"," 2.1e-02"," 1.2e-08"," 1.0e-02"," 2.4e-12"," 2.7e-03"," 1.8e-02"," 3.4e-02"," 3.1e-02"," 9.4e-04"," 3.5e-05"," 5.4e-03"," 6.9e-04"," 4.4e-10"," 4.2e-04"," 2.4e-33"," 1.5e-09"," 5.1e-06"," 6.8e-04"," 9.3e-06"," 8.7e-03"," 6.7e-04"," 2.3e-02"," 2.3e-02"," 9.0e-03"," 1.3e-07"," 2.4e-05"," 1.2e-20"," 2.0e-10","4.1e-161"," 1.7e-03"," 1.2e-02"," 9.4e-03"," 3.9e-16"," 6.9e-04"," 1.7e-02"," 1.1e-30"," 1.0e-08"," 5.8e-03"," 7.4e-13"," 1.1e-05"," 1.5e-02"," 7.8e-04"," 4.6e-03"," 3.6e-08"," 3.9e-04"," 1.1e-05"," 5.7e-10"," 6.7e-03"," 2.4e-04"," 3.7e-02"," 8.2e-06"," 3.3e-02"," 3.1e-02"," 5.1e-03"," 7.6e-03"," 2.7e-03"," 2.2e-02"," 2.0e-02"," 5.0e-02"," 9.1e-08"," 1.7e-68"," 1.2e-02"," 5.9e-03"," 2.2e-07"," 4.2e-02"," 6.0e-36"," 1.7e-18"," 1.5e-15"," 7.9e-06"," 1.7e-02"," 2.8e-02"," 2.1e-02"," 5.7e-09"," 3.9e-07"," 1.9e-02"," 1.4e-05"," 8.7e-04"," 7.2e-27"," 4.1e-04"," 2.7e-03"," 4.2e-02"," 3.5e-03"," 2.1e-02"," 1.6e-03"," 4.8e-02"," 2.2e-03"," 6.1e-03"," 3.6e-03"," 3.0e-04"," 3.8e-02"," 2.5e-02"," 2.5e-06"," 6.9e-06"," 3.1e-06"," 6.1e-05"," 7.7e-03"," 3.4e-02"," 3.4e-02"," 4.3e-04"," 4.6e-02"," 5.5e-08"," 4.8e-04"," 3.6e-02"," 3.3e-19"," 2.0e-02"," 1.6e-03"," 7.1e-04"," 1.2e-02"," 2.1e-02"," 7.9e-03"," 4.6e-12"," 1.2e-03"," 1.2e-07"," 2.0e-02"," 1.1e-36"," 2.4e-03"," 2.3e-04"," 5.4e-03"," 2.7e-03"," 1.3e-02"," 2.2e-14"," 3.0e-02"," 2.0e-03"," 7.9e-06"," 2.9e-03"," 1.0e-09"," 6.0e-11"," 1.3e-02"," 2.5e-03"," 8.3e-03"," 8.2e-06"," 4.5e-02"," 2.2e-03"," 3.4e-03"," 9.9e-15"," 4.4e-05"," 4.5e-03"," 2.3e-02"," 1.0e-07"," 9.9e-03"," 3.0e-02"," 4.1e-03"," 4.2e-26"," 3.1e-09"," 2.6e-06"," 1.7e-02"," 1.9e-09"," 1.7e-04"," 7.2e-07"," 2.6e-04"," 1.6e-02"," 1.1e-03"," 1.2e-03"," 2.1e-02"," 3.2e-02"," 8.1e-03"," 2.3e-10"," 4.8e-02"," 4.6e-02"," 1.9e-02"," 7.1e-09"," 2.9e-02"," 3.2e-03"," 1.2e-02"," 1.9e-02"," 2.7e-03"," 7.4e-03"," 2.7e-02"," 4.1e-10"," 6.0e-05"," 2.4e-14"," 5.5e-22"," 3.6e-05"," 1.4e-03"," 2.1e-02"," 1.5e-03"," 9.5e-21"," 3.8e-02"," 9.7e-06"," 5.4e-04"," 1.1e-02"," 2.4e-02"," 3.5e-04"," 1.2e-02"," 2.6e-04"," 2.3e-02"," 1.8e-02"," 3.4e-05"," 1.4e-02"," 9.0e-03"," 1.5e-03"," 4.2e-02"," 1.6e-02"," 1.3e-05"," 1.2e-11"," 2.9e-05"," 3.4e-02"," 4.9e-02"," 3.7e-03"," 1.4e-02"," 1.6e-03"," 1.2e-02"," 2.3e-05"," 3.6e-02"," 7.4e-06"," 1.9e-03"," 2.0e-03"," 1.7e-03"," 8.5e-03"," 1.6e-06"," 5.8e-03"," 4.7e-04"," 6.5e-09"," 9.0e-03"," 2.0e-03"," 6.6e-05"," 9.5e-04"," 1.7e-16"," 8.8e-03"," 4.7e-04"," 5.0e-02"," 2.4e-04"," 1.6e-02"," 1.1e-05"," 1.6e-02"," 1.2e-02"," 7.5e-05"," 1.0e-02"," 1.8e-06"," 4.4e-02"," 3.3e-03"," 1.2e-08"," 2.9e-03"," 1.3e-05"," 3.4e-13"," 4.4e-02"," 8.0e-15"," 5.4e-04"," 1.2e-03"," 3.4e-04"," 5.2e-04"," 9.6e-21"," 3.7e-12"," 9.6e-04"]],"container":"<table class=\"table table-condensed\">\n <thead>\n <tr>\n <th> <\/th>\n <th>baseMean<\/th>\n <th>log2FoldChange<\/th>\n <th>lfcSE<\/th>\n <th>stat<\/th>\n <th>pvalue<\/th>\n <th>padj<\/th>\n <\/tr>\n <\/thead>\n<\/table>","options":{"deferRender":true,"scroller":true,"scrollY":300,"sScrollX":"100%","pagingType":"simple","initComplete":"function(settings, json) {\n\)(this.api().table().header()).css({‘font-size’: ‘75%’});}“,”order”:[],“autoWidth”:false,“orderClasses”:false,“columnDefs”:[{“orderable”:false,“targets”:0}],“rowCallback”:“function(row, data, displayNum, displayIndex, dataIndex) {value=data[1]; $(this.api().cell(row, 1).node()).css({‘font-size’:‘75%’});value=data[2]; $(this.api().cell(row, 2).node()).css({‘font-size’:‘75%’});value=data[3]; $(this.api().cell(row, 3).node()).css({‘font-size’:‘75%’});value=data[4]; $(this.api().cell(row, 4).node()).css({‘font-size’:‘75%’});value=data[5]; $(this.api().cell(row, 5).node()).css({‘font-size’:‘75%’});value=data[6]; \((this.api().cell(row, 6).node()).css({'font-size':'75%'});\n}"},"selection":{"mode":"single","selected":null,"target":"row","selectable":null}},"evals":["options.initComplete","options.rowCallback"],"jsHooks":[]}</script> </div> <div class="col-xs-6"> <div id="htmlwidget-0b73b03f0166fd8a0f4a" style="width:950px;height:530px;" class="ContrApption html-widget"></div> <script type="application/json" data-for="htmlwidget-0b73b03f0166fd8a0f4a">{"x":{"data":{"baseMean":["31162.1"," 7917.2"," 342.2"," 159.5"," 658.4"," 647.2"," 1576.3"," 415.4"," 510.2"," 2184.4"," 484.9","50847.6"," 94.0"," 1080.2"," 2318.2"," 265.5","38598.4"," 619.8"," 200.7"," 891.4"," 177.6"," 602.1"," 261.2"," 5449.6"," 8747.4"," 125.7"," 677.6"," 4323.5","39031.1"," 996.4"," 1265.6"," 494.1"," 3285.2"," 593.0"," 598.9"," 420.3"," 1323.9"," 8089.8"," 1520.2","11081.5"," 1154.7"," 14.3"," 724.1","37820.8"," 908.9"," 48.8"," 43.3"," 41.1"," 1195.5"," 100.1"," 987.2"," 55.5"," 1619.2"," 122.6"," 2163.3"," 1498.6"," 4518.9"," 1351.2"," 806.1"," 4343.0"," 17.7"," 58.7"," 36.3"," 277.5"," 1202.9"," 5589.6"," 1371.2"," 2647.5"," 1096.0"," 3788.1","40700.7"," 414.3"," 6840.4","13040.9"," 78.7"," 660.4"," 1275.3"," 833.2"," 2181.7"," 2423.4"," 3738.8"," 1829.9"," 1835.4"," 252.7"," 135.8"," 1957.7"," 52.7"," 93.3"," 479.3","33460.0"," 1577.8"," 146.0"," 866.9"," 295.9"," 108.6"," 1165.0"," 541.9"," 65.4","12820.9"," 1328.2"," 4906.9"," 348.2"," 466.4"," 1180.5"," 1027.3"," 4778.3"," 415.2"," 1635.9"," 339.9"," 3595.6"," 181.7"," 1740.2"," 274.2"," 264.9"," 211.1"," 777.1"," 640.0"," 505.2"," 1771.6"," 111.5"," 2572.2","13208.8"," 672.0"," 5710.9"," 1778.2","14026.4"," 2533.7"," 369.7","28002.9"," 2713.5"," 352.2"," 1936.5"," 3417.2"," 6494.9"," 3785.6"," 1355.2"," 840.4"," 1571.1"," 3660.3"," 376.6"," 136.2"," 1766.7"," 210.4"," 177.2"," 1046.0"," 2076.3"," 819.8"," 643.3","35789.7"," 150.9"," 918.2"," 289.5"," 2424.8"," 35.6"," 994.7"," 1080.0"," 40.8"," 2963.1"," 222.1"," 9280.8"," 8716.3"," 336.0"," 1870.5"," 1091.7"," 2179.8"," 1326.3"," 1046.8"," 608.1"," 336.1"," 11.0"," 360.5"," 1805.3"," 3091.9"," 216.5"," 2194.0"," 391.7"," 58.9"," 92.1"," 519.8"," 16.5"," 689.3"," 1499.6"," 28.4"," 120.7"," 1501.4"," 407.3"," 10.8"," 3536.5","10270.1"," 3492.1"," 8867.5"," 4410.5"," 508.0"," 93.7"," 4999.4"," 977.9"," 467.0","11465.3"," 561.9"," 1400.3"," 1179.1"," 47.0"," 276.5","43909.3"," 784.9"," 2021.9"," 3845.4"," 20.3"," 1185.7"," 2955.0"," 173.0"," 446.3"," 3310.7"," 1017.5"," 2125.9"," 1372.7"," 1310.1"," 463.8"," 7010.5"," 753.5"," 419.2"," 398.0"," 3303.5"," 743.0"," 407.4"," 1448.2"," 3772.4"," 4474.8"," 42.1"," 149.9"," 354.0"," 92.7"," 83.7","22265.5"," 8218.9"," 168.9"," 599.1"," 115.1"," 1164.0"," 691.7"," 1054.6"," 20.0"," 1360.3"," 1587.7"," 43.5"," 7835.3"," 4160.1"," 1389.9"," 995.8"," 3706.1"," 636.6"," 606.4"," 1492.3"," 664.6"," 4250.1"," 489.9"," 133.9"," 2729.8"," 713.8"," 86.9"," 32.9"," 158.4"," 464.4"," 2009.3"," 519.4"," 2264.3"," 428.1"," 140.6"," 1601.7"," 1852.9"," 132.2"," 6606.7"," 1308.6"," 945.5"," 4225.6"," 320.6"," 8881.1"," 279.5"," 187.4"," 37.9"," 394.1"," 8.0"," 712.5"," 6023.7"," 3462.7"," 340.9"," 159.5"," 81.0"," 17.0"," 252.6"," 255.8"," 939.5"," 41.1"," 1535.0"," 461.4"," 2915.6"," 783.1"," 326.5"," 355.2"," 2739.1"," 795.4"," 938.8"," 193.1"," 107.6"," 2746.3"," 1494.1"," 126.2"," 3259.6"," 1793.9"," 1463.8"," 396.8"," 756.4"," 554.0"," 1994.7"," 920.6"," 547.0"," 29.2"," 1021.6"," 871.1"," 217.0"," 217.3"," 265.3"," 53.7"," 1236.0"," 30.8"," 274.2"," 90.8"," 1004.6"," 1174.8"," 1279.3"," 3108.9"," 146.0"," 499.6"," 2726.0"," 1318.3"," 953.7"," 415.4"," 411.5"," 73.9"," 1870.2"," 961.6"," 4051.9"," 2579.3"," 340.0"," 7558.9"," 4734.2"," 572.3"," 2149.3"," 1439.2"," 343.3"," 436.3"," 79.6"," 897.9"," 134.4"," 180.5"," 42.6"," 17.3"," 584.7"," 3633.0"," 57.4"," 66.2"," 315.3"," 253.0"," 610.8"," 131.9"," 404.5"," 1656.9"," 3131.5"," 212.1"," 28.3"," 73.8"," 332.4"," 3429.2"," 222.5"," 1098.9"," 2798.2"," 1786.6"," 29.9"," 379.0"," 1489.1"," 373.9"," 168.9"," 451.1"," 257.3"," 1362.0"," 335.2"," 1543.4"," 82.4"," 15.1"," 82.6"," 817.0"," 368.4"," 129.0"," 70.2"," 87.2","15324.8"," 63.8"," 1106.7"," 353.0"," 81.5"," 826.4"," 41.1"," 4877.1"," 66.4"," 73.8"," 2075.1"," 22.7"," 2490.1"," 682.2"," 152.8"," 65.2"," 46.9"," 927.5"," 162.2"," 4918.5"," 17.5"," 5213.1"," 392.1"," 6313.3"," 547.2"," 1553.9"," 141.7"," 28.9"," 793.2"," 784.1"," 140.9"," 49.1"," 547.2"," 372.6"," 373.6"," 695.1"," 746.2"," 110.8"," 65.1"," 4836.3"," 5939.6"," 68.0"," 2290.5"," 189.8"," 1012.6"," 1476.1"," 114.6"," 74.6"," 1067.1"," 161.2"," 2693.3"," 285.2"," 326.9"," 581.2"," 15.2"," 1664.0"," 413.6"," 496.0"," 225.9","16641.1"," 522.6"," 39.0"," 160.5"," 6067.5"," 557.0"," 892.5"," 6.7"," 95.8"," 1253.4"," 8222.6"," 282.8"," 30.8"," 2342.9"," 118.6"," 638.2"," 425.5"," 104.6","19322.7"," 2606.0"," 100.8"," 3910.8"," 518.6"," 215.6"," 52.7"," 1724.9"," 383.5"," 711.1"," 54.6"," 533.4"," 220.5"," 77.4"," 594.3"," 1125.6"," 496.3"," 244.0"," 4353.3"," 47.9"," 20.5"," 541.9"," 544.2"," 396.1"," 1196.0"," 17.3"," 65.2"," 584.2"," 556.6"," 1666.7"," 815.4"," 13.6"," 1035.7"," 1373.6"," 104.3"," 27.4"," 902.5"," 14.2"," 295.1"," 12.9"," 1262.7"," 2511.5"," 794.8"," 1651.7"," 164.5"," 1083.9"," 874.7"," 921.6"," 1172.7"," 655.1"," 532.4"," 3859.1"," 1576.9"," 18.9"," 1775.6"," 116.9"," 223.2"," 7681.0"," 908.3"," 375.1"," 2446.5"," 5872.3"," 3653.0"," 1696.0"," 33.9"," 416.3"," 3000.1"," 460.4"," 261.1"," 169.3"," 643.8"," 736.4"," 98.0"," 1932.8"," 324.2"," 24.8"," 2808.5"," 803.7"," 103.1"," 521.1"," 305.6"," 25.0"," 747.7"," 1717.6"," 67.1"," 284.7"," 1256.3"," 3146.7"," 560.7"," 677.9"," 5382.4"," 167.5"," 39.6"," 89.9"," 35.3"," 416.8"," 1434.4"," 363.9"," 512.8"," 2623.0"," 357.5"," 269.8"," 1799.3"," 248.6"," 339.8"," 734.4"," 397.0"," 880.3"," 73.1"," 553.3"," 672.8"," 371.5"," 726.2"," 222.0"," 1280.6"," 502.9"," 28.3"," 993.5"," 62.3"," 20.8"," 1076.0"," 29.1"," 977.8"," 3300.8"," 427.8"," 3041.6"," 97.4"," 158.2"," 622.8"," 6088.9"," 1367.4"," 27.3"," 152.6"," 82.0"," 148.3"," 20.1"," 396.6"," 1644.8"," 255.8"," 1477.3"," 110.4"," 749.3"," 174.8"," 301.9"," 282.8"," 983.3"," 570.6"," 478.0"," 2842.8"," 87.6"," 1055.8"," 33.7"," 15.6"," 308.5"," 294.4"," 475.4"," 474.3"," 730.6"," 13.9"," 4469.8"," 1628.8"," 521.9"," 733.1"," 727.9"," 1564.3"," 820.5"," 5447.9"," 175.7"," 58.6"," 344.8"," 104.6"," 1455.4"," 42.5"," 2832.9"," 3037.4"," 72.0"," 1048.4"," 74.2"," 718.4"," 2309.9"," 1308.5"," 1726.6"," 14.3"," 3224.6"," 17.2"," 244.5"," 975.5"," 38.3"," 583.0"," 261.9"," 882.1"," 277.6"," 899.4"," 3674.2"," 1106.5"," 910.1"," 1010.0"," 711.5"," 728.4"," 83.8"," 220.2"," 1478.5"," 4196.3"," 155.1"," 4855.2","44154.5"," 216.0"," 8880.3"," 162.1"," 765.4"," 3733.2"," 843.8"," 322.1"," 40.3"," 753.4"," 517.4","13145.2"," 113.0"," 10.3"," 1311.2"," 1195.0","14718.1"," 274.0"," 2029.1"," 9.8"," 1737.3"," 2203.0"," 1302.8"," 1082.3"," 1553.5"," 2469.1"," 14.4"," 973.9"," 57.1"," 444.2"," 152.3"," 128.6"," 631.0"," 45.7"," 42.1"," 310.9"," 713.1"," 49.3"," 153.1"," 166.9"," 169.5"," 27.1"," 8828.0"," 12.2"," 924.9"," 1408.5"," 5152.9"," 891.4"," 1344.4"," 7162.5"," 2283.7"," 804.0"," 90.4"," 43.3"," 4596.2"," 9.0"," 93.0"," 2676.3"," 110.5"," 84.6"," 506.0"," 1960.1"," 240.7"," 23.6"," 365.1"," 1440.0"," 187.1"," 1088.3"," 2732.8","10167.5"," 155.8"," 46.1"," 160.5"," 327.2"," 313.0"," 166.0"," 113.8"," 1583.0"," 303.8"," 335.7"," 1013.6"," 12.3"," 1836.9"," 57.9"," 706.2"," 64.3"," 220.9"," 2918.2"," 3283.4"," 74.4"," 17.4"," 1071.9"," 587.7"," 302.1"," 343.9"," 646.2"," 13.1"," 1450.9"," 43.3"," 144.9"," 68.6"," 1945.0"," 5318.5"," 215.7"," 515.7"," 59.4"," 3992.3"," 707.8"," 4137.8"," 4878.6"," 1452.0"," 3446.9"," 5597.7"," 1642.1"," 8483.1"," 242.0"," 609.3"," 1128.1"," 87.1"," 133.3"," 2040.8"," 1140.7"," 81.9"," 1289.7"," 76.3"," 2216.8"," 436.0"," 304.5"," 30.3"," 2642.5"," 654.1"," 2341.8"," 7285.1"," 251.9"," 346.4"," 117.0"," 804.6"," 267.7"," 33.2"," 1396.4"," 44.9"," 89.3"," 68.3"," 1986.9"," 1986.1"," 6070.8"," 124.8"," 747.8"," 2653.0"," 3027.9"," 746.2"," 928.4"," 434.5"," 95.9"," 363.0"," 912.6"," 1991.1"," 999.2"," 51.0"," 431.6"," 5796.4"," 719.4"," 1657.6"," 28.1"," 647.8"," 5128.8"," 1755.9"," 1825.2"],"log2FoldChange":["-0.62","-0.30","-2.68"," 1.07","-1.29"," 0.40","-0.49","-0.42"," 0.40"," 0.45"," 0.53","-0.64","-0.64","-0.47","-0.53"," 2.03"," 0.37","-0.53","-0.86","-0.33"," 0.71","-0.74"," 1.23"," 0.33","-0.47","-0.60","-0.47","-0.71"," 0.52","-0.67","-0.68"," 1.25","-0.35","-0.48","-1.49","-1.35","-1.72","-0.67","-0.94"," 0.39"," 0.51"," 1.87","-0.48"," 0.75","-0.77","-1.01"," 1.51"," 1.16"," 0.67"," 2.13","-0.35"," 1.03","-0.41","-0.93","-0.64","-0.71","-0.92","-0.54"," 0.36"," 3.18"," 1.80","-0.79","-1.98","-2.15","-0.73"," 0.41"," 0.69"," 0.34","-1.07"," 0.46","-0.52","-0.76","-0.47"," 0.44","-0.83","-0.84"," 0.45"," 0.79"," 0.33","-1.08"," 0.33","-0.91","-0.40","-0.51"," 0.74"," 0.67"," 0.90","-0.73"," 0.82"," 0.61","-0.67","-1.05"," 0.33","-0.51","-1.05","-0.30"," 0.54"," 1.44"," 0.49","-0.45"," 0.38","-0.58"," 0.76"," 0.57","-0.89","-0.50"," 0.52"," 0.66"," 0.47","-0.45","-0.86","-0.46"," 0.69","-0.76","-2.05"," 0.76","-0.36","-0.49","-0.45","-0.92","-0.40"," 0.58","-0.44","-0.43"," 0.35"," 0.49"," 0.48","-0.44"," 0.63","-0.50"," 0.87","-0.38","-0.49"," 0.52","-0.60"," 0.36"," 0.32","-0.56"," 0.43"," 0.99"," 0.89","-0.53","-1.07"," 0.92","-0.53"," 0.49"," 0.42"," 0.48","-0.53"," 1.97"," 0.44","-0.47","-0.64","-2.12","-0.39"," 0.68"," 1.49"," 0.39","-0.64"," 0.43"," 0.35"," 0.78","-0.37"," 0.31","-0.44"," 0.86"," 0.47"," 0.53","-0.73","-1.86"," 0.45","-0.48"," 1.53"," 1.57"," 0.60"," 0.71"," 4.59"," 2.29","-0.62","-1.50","-0.37","-0.38","-1.07","-1.48","-2.90","-0.46","-1.85"," 0.50","-0.55"," 0.49"," 0.33"," 0.30","-0.39"," 1.13","-0.33","-0.39","-0.68","-0.39","-0.43"," 1.01","-0.34","-1.16"," 0.43"," 2.36"," 0.43","-0.53"," 0.68"," 1.27"," 0.66"," 1.19"," 1.18","-0.90"," 0.37"," 0.50"," 0.44"," 0.51"," 0.84"," 0.55"," 0.53"," 0.84","-0.65"," 0.47","-0.58","-0.59","-0.63","-0.65","-0.61"," 0.36","-1.30"," 0.67"," 0.75"," 1.35","-0.98"," 0.53"," 0.41","-0.65"," 1.05"," 0.83"," 0.96"," 0.54"," 0.61"," 2.40"," 0.72","-1.44"," 1.47"," 0.45"," 0.45"," 0.44","-0.53"," 2.20"," 0.54","-0.55"," 0.81","-0.45"," 0.51"," 2.45","-0.62","-0.36","-0.73"," 2.84","-1.14"," 0.76","-0.66"," 0.94","-0.48","-0.40","-0.51"," 1.24","-0.49"," 0.59","-0.63"," 0.40"," 0.32"," 0.70"," 0.25","-0.50"," 0.56"," 0.54","-0.57","-2.09"," 0.50"," 3.21","-0.59"," 0.36"," 0.41","-1.08"," 0.56","-0.76","-1.59"," 0.48","-0.66"," 0.47","-0.95","-0.37","-0.69"," 0.55","-0.54","-1.02"," 0.47","-0.56","-1.18"," 0.39","-0.68"," 1.32"," 0.59","-0.36","-0.83"," 0.44","-0.81"," 0.67"," 1.41","-1.23"," 0.86"," 0.82"," 0.85","-0.62"," 1.07","-0.51","-0.73","-0.74"," 0.49"," 1.39"," 1.93"," 0.39","-1.60","-0.96"," 1.85","-0.47"," 0.29","-0.36"," 0.86","-0.65","-0.34","-0.46"," 1.07"," 0.73"," 0.54"," 0.41","-0.87"," 0.36"," 1.19"," 0.40","-0.33"," 0.94"," 0.56","-0.40","-0.52","-0.38"," 0.43"," 0.66"," 0.82","-2.67","-0.32","-0.79","-0.72","-0.96","-2.35","-0.76"," 0.34","-1.05","-0.72","-1.09"," 0.90","-0.60"," 1.44"," 0.48","-0.33"," 0.76"," 0.56"," 1.21","-0.82","-0.62"," 0.49","-0.65"," 0.53","-0.58"," 0.37","-3.02"," 0.66","-0.76","-0.98","-0.54"," 0.58","-0.65"," 0.54"," 0.43","-0.35","-1.08","-1.42"," 0.91"," 0.32"," 0.77"," 0.87"," 0.94"," 0.77","-1.45","-1.33"," 0.41"," 0.98"," 1.12"," 0.56","-1.10"," 0.29"," 2.02"," 0.90"," 0.68","-1.10","-1.21"," 0.74","-1.42","-3.41","-1.93","-0.51"," 1.37"," 0.26","-1.62"," 1.16","-0.48","-0.55"," 1.45","-0.41","-1.02","-1.23","-0.30"," 0.58"," 0.99"," 1.30","-0.51","-0.95"," 0.48"," 0.50"," 0.48"," 1.92","-1.56"," 0.41"," 0.54","-1.05","-0.66","-0.57","-0.31"," 0.26"," 3.64","-1.90"," 0.33"," 0.94"," 0.48","-0.47","-0.42","-0.44"," 2.36"," 0.91"," 0.61","-1.39"," 3.51"," 1.06","-0.60"," 1.50","-1.63"," 0.37"," 0.52"," 1.92"," 2.60","-0.86"," 0.35"," 0.43"," 0.78","-1.38"," 0.36"," 0.93"," 2.56","-0.49","-0.79"," 1.10","-0.56","-0.55","-0.35","-0.53","-2.97"," 0.80"," 0.54","-1.08","-0.41"," 0.79","-0.36"," 0.60"," 1.65"," 0.40","-0.41"," 0.95"," 0.65"," 0.57","-1.55","-1.57"," 0.95","-0.39"," 0.48"," 0.43","-2.31","-1.59","-0.74","-0.99"," 0.36"," 0.32"," 2.73","-0.88"," 0.48"," 0.78","-1.53","-0.54","-1.73","-1.11","-1.76","-0.79"," 0.36"," 0.50"," 0.30"," 0.62"," 0.35","-0.35"," 0.42","-0.40","-0.94","-0.33"," 0.98","-0.39","-2.15"," 1.03"," 0.85","-0.74"," 0.66"," 0.88","-0.62"," 0.56","-0.46","-0.41"," 0.40"," 1.02"," 1.74"," 0.61"," 0.39","-1.09","-0.54"," 0.86"," 0.98","-0.63"," 1.35","-0.54","-1.51"," 0.30"," 0.31","-1.84","-0.46"," 0.63"," 2.63"," 0.88","-0.53","-3.01","-0.43"," 0.45","-0.90"," 0.40","-0.31","-0.55"," 1.08"," 2.81","-0.76","-1.74","-0.77"," 0.85"," 0.64","-0.46"," 0.34","-0.76"," 2.34"," 0.35","-0.70","-0.64","-0.39"," 0.83"," 0.43","-0.91","-0.41"," 0.42","-0.54","-0.51"," 0.57","-0.44"," 0.41","-0.96","-1.05","-2.39"," 2.87"," 0.62","-1.51"," 0.41","-0.61","-0.89","-0.32"," 1.63"," 1.12","-0.68"," 0.36","-0.68"," 1.38","-1.40","-1.03"," 0.70"," 1.26"," 0.54"," 0.48","-0.68"," 0.35","-0.79","-0.75","-0.70"," 2.54"," 1.04"," 0.70"," 0.53"," 0.63"," 0.40"," 0.97"," 0.42"," 1.07"," 1.74"," 1.02"," 0.98"," 1.30","-0.95"," 4.62","-2.32"," 0.33"," 0.56"," 1.05","-0.60","-0.38"," 1.16","-1.13"," 0.46","-1.55","-1.33","-0.48","-0.82","-0.42","-1.94"," 0.53"," 0.51"," 1.80","-0.41","-1.12","-0.34"," 0.61","-0.37","-0.42","-1.97"," 0.47","-1.79"," 0.48"," 0.40"," 0.97"," 0.88"," 4.16"," 0.35","-0.52"," 0.63","-0.31"," 1.58"," 1.78","-0.92"," 0.56","-0.39","-0.72"," 0.45"," 1.03"," 0.80"," 0.58"," 0.82"," 0.96"," 1.99"," 0.46"," 0.68"," 0.42"," 0.51","-0.34","-0.56","-1.01"," 0.45","-0.42","-0.60"," 0.91","-1.68"," 0.34"," 1.21"," 0.64"," 0.90"," 0.67","-2.15"," 0.53"," 0.50","-0.52"," 0.31"," 0.87"," 0.43"," 1.52"," 0.95"," 1.10","-0.47"," 0.78"," 0.74"," 0.37","-1.22","-2.62"," 0.54"," 0.95"," 0.96","-2.33"," 0.68","-0.70","-1.25"," 0.36","-1.70","-0.80","-0.32","-0.35"," 0.90","-0.63","-0.92"," 0.73","-0.34","-1.24","-1.10"," 0.82","-1.81","-0.95"," 0.42","-2.02","-1.00","-0.55"," 0.37","-1.31","-1.30","-0.47"," 0.58"," 2.20"," 0.66"," 0.93"," 0.36","-1.60","-1.27"," 1.00"," 0.56","-0.47"," 0.74"," 0.78","-0.46"," 0.52","-0.52"," 1.45","-1.70"," 0.42","-0.91"," 0.78","-0.71","-1.03","-0.52"," 0.46"," 0.89"," 1.68","-0.41","-0.80","-0.86"," 1.37"," 1.31","-2.80"," 0.46"," 1.30","-0.78"," 4.92","-0.46"," 0.58","-0.93"," 0.44"," 0.87","-0.58","-0.36","-0.73","-0.37"," 0.43"," 0.54"," 0.50"," 0.32"," 0.31"," 0.53"," 0.42","-0.77","-1.81","-1.12"," 0.44"," 0.29","-0.90","-0.43","-1.23","-0.43","-0.84","-0.50","-1.88","-0.58"," 0.51","-0.64","-0.38","-1.13","-0.94"," 1.03"," 1.78","-0.69","-1.31"," 0.63","-1.22","-2.39"," 1.38"," 0.63"," 0.31"," 0.56","-0.59","-0.61"," 0.32"," 0.46"," 0.94"," 0.49"," 1.14","-0.59","-0.59","-0.78","-0.58","-0.50","-2.31"," 0.43","-1.52","-0.69"," 0.55"," 1.83"," 0.57"," 1.90"," 0.89","-0.69"],"lfcSE":["0.123","0.103","0.183","0.354","0.190","0.112","0.100","0.140","0.134","0.130","0.131","0.133","0.218","0.109","0.119","0.280","0.076","0.119","0.205","0.118","0.237","0.181","0.169","0.112","0.134","0.204","0.133","0.159","0.123","0.181","0.114","0.161","0.086","0.108","0.144","0.151","0.186","0.166","0.122","0.115","0.100","0.570","0.114","0.096","0.257","0.269","0.342","0.355","0.141","0.286","0.103","0.331","0.108","0.301","0.114","0.102","0.099","0.101","0.112","0.144","0.500","0.254","0.335","0.181","0.104","0.115","0.136","0.094","0.108","0.162","0.183","0.224","0.149","0.127","0.280","0.162","0.127","0.125","0.101","0.194","0.116","0.163","0.124","0.161","0.188","0.172","0.292","0.219","0.126","0.168","0.115","0.206","0.109","0.135","0.222","0.100","0.168","0.253","0.093","0.147","0.112","0.185","0.190","0.125","0.243","0.095","0.128","0.105","0.133","0.124","0.227","0.118","0.189","0.174","0.279","0.140","0.125","0.147","0.101","0.190","0.082","0.125","0.132","0.096","0.121","0.097","0.090","0.140","0.153","0.103","0.171","0.125","0.169","0.170","0.199","0.112","0.107","0.124","0.099","0.151","0.210","0.089","0.162","0.196","0.113","0.131","0.106","0.144","0.148","0.204","0.134","0.144","0.113","0.325","0.136","0.109","0.347","0.109","0.153","0.124","0.121","0.170","0.118","0.111","0.123","0.224","0.100","0.124","0.241","0.642","0.139","0.143","0.139","0.221","0.146","0.165","0.465","0.233","0.126","0.485","0.115","0.126","0.352","0.195","0.127","0.155","0.632","0.120","0.102","0.133","0.116","0.082","0.138","0.277","0.109","0.100","0.174","0.108","0.147","0.187","0.117","0.271","0.146","0.227","0.130","0.100","0.181","0.431","0.108","0.094","0.219","0.124","0.120","0.154","0.148","0.107","0.158","0.125","0.141","0.162","0.119","0.139","0.141","0.143","0.224","0.101","0.104","0.129","0.356","0.185","0.195","0.220","0.230","0.139","0.144","0.218","0.182","0.221","0.214","0.176","0.114","0.544","0.145","0.224","0.318","0.130","0.140","0.129","0.157","0.097","0.144","0.130","0.123","0.140","0.147","0.152","0.175","0.126","0.102","0.346","0.344","0.226","0.145","0.115","0.132","0.108","0.173","0.247","0.156","0.104","0.183","0.130","0.104","0.122","0.086","0.161","0.096","0.144","0.188","0.328","0.174","0.905","0.188","0.122","0.120","0.172","0.197","0.226","0.470","0.154","0.176","0.106","0.305","0.128","0.246","0.163","0.176","0.176","0.124","0.170","0.163","0.115","0.165","0.247","0.194","0.112","0.197","0.104","0.181","0.155","0.193","0.176","0.161","0.126","0.102","0.131","0.362","0.120","0.131","0.198","0.159","0.239","0.326","0.111","0.375","0.158","0.273","0.127","0.102","0.095","0.160","0.201","0.108","0.096","0.141","0.150","0.174","0.129","0.226","0.102","0.161","0.095","0.104","0.149","0.101","0.098","0.125","0.132","0.101","0.192","0.245","0.240","0.106","0.182","0.201","0.335","0.518","0.160","0.094","0.286","0.242","0.142","0.247","0.109","0.239","0.143","0.115","0.148","0.163","0.401","0.289","0.122","0.121","0.158","0.161","0.176","0.100","0.420","0.133","0.092","0.219","0.172","0.150","0.172","0.109","0.129","0.103","0.259","0.484","0.253","0.098","0.180","0.215","0.286","0.223","0.215","0.279","0.101","0.143","0.241","0.138","0.333","0.078","0.391","0.262","0.150","0.373","0.225","0.189","0.215","0.295","0.288","0.118","0.240","0.085","0.561","0.105","0.148","0.151","0.140","0.106","0.194","0.339","0.104","0.191","0.289","0.309","0.135","0.189","0.134","0.155","0.138","0.257","0.257","0.102","0.101","0.274","0.090","0.198","0.107","0.091","0.278","0.248","0.113","0.220","0.139","0.152","0.132","0.146","0.630","0.118","0.135","0.242","0.215","0.119","0.146","0.360","0.227","0.124","0.136","0.159","0.900","0.220","0.104","0.096","0.176","0.367","0.122","0.217","0.137","0.137","0.195","0.167","0.098","0.191","0.094","0.119","0.254","0.262","0.101","0.182","0.112","0.261","0.118","0.159","0.236","0.118","0.107","0.159","0.184","0.120","0.379","0.489","0.281","0.120","0.141","0.119","0.530","0.240","0.113","0.135","0.101","0.103","0.831","0.161","0.105","0.202","0.389","0.109","0.548","0.137","0.569","0.137","0.123","0.154","0.091","0.206","0.098","0.108","0.135","0.122","0.150","0.113","0.215","0.107","0.491","0.216","0.216","0.164","0.130","0.115","0.156","0.121","0.144","0.132","0.114","0.347","0.307","0.145","0.119","0.266","0.155","0.154","0.115","0.214","0.172","0.169","0.436","0.090","0.104","0.212","0.143","0.160","0.455","0.102","0.139","0.330","0.144","0.137","0.173","0.128","0.110","0.144","0.169","0.391","0.240","0.357","0.134","0.145","0.176","0.120","0.094","0.140","0.234","0.111","0.143","0.132","0.118","0.136","0.141","0.220","0.113","0.131","0.171","0.154","0.153","0.134","0.122","0.338","0.125","0.304","0.561","0.163","0.383","0.117","0.107","0.150","0.109","0.254","0.190","0.126","0.115","0.106","0.409","0.182","0.270","0.219","0.427","0.182","0.118","0.140","0.098","0.190","0.109","0.164","0.203","0.155","0.133","0.127","0.122","0.117","0.232","0.136","0.345","0.507","0.171","0.198","0.132","0.135","0.169","0.591","0.099","0.164","0.120","0.145","0.118","0.096","0.176","0.130","0.198","0.259","0.148","0.198","0.116","0.313","0.124","0.099","0.262","0.118","0.253","0.116","0.118","0.125","0.142","0.546","0.134","0.473","0.153","0.128","0.345","0.145","0.233","0.106","0.146","0.108","0.108","0.121","0.190","0.107","0.108","0.123","0.238","0.145","0.159","0.138","0.181","0.162","0.235","0.176","0.106","0.180","0.147","0.138","0.107","0.142","0.358","0.116","0.119","0.163","0.208","0.579","0.109","0.223","0.123","0.167","0.141","0.617","0.179","0.169","0.122","0.108","0.142","0.101","0.517","0.100","0.349","0.120","0.188","0.224","0.117","0.351","0.346","0.135","0.158","0.304","0.177","0.177","0.157","0.349","0.095","0.516","0.097","0.108","0.091","0.174","0.168","0.136","0.102","0.104","0.324","0.320","0.159","0.637","0.246","0.112","0.241","0.208","0.151","0.121","0.218","0.382","0.157","0.157","0.198","0.101","0.171","0.113","0.240","0.281","0.177","0.127","0.146","0.182","0.194","0.147","0.175","0.149","0.208","0.602","0.147","0.288","0.121","0.235","0.276","0.156","0.145","0.235","0.482","0.134","0.115","0.182","0.166","0.128","0.575","0.114","0.416","0.196","0.496","0.159","0.113","0.219","0.131","0.282","0.134","0.109","0.166","0.118","0.136","0.110","0.154","0.093","0.079","0.185","0.129","0.151","0.243","0.228","0.150","0.102","0.242","0.132","0.312","0.128","0.170","0.172","0.361","0.149","0.132","0.163","0.110","0.206","0.262","0.241","0.276","0.200","0.336","0.134","0.298","0.270","0.402","0.147","0.111","0.126","0.182","0.120","0.100","0.138","0.199","0.143","0.208","0.207","0.159","0.122","0.154","0.099","0.292","0.152","0.181","0.163","0.137","0.420","0.133","0.191","0.117","0.170"],"stat":[" -5.0"," -2.9","-14.7"," 3.0"," -6.8"," 3.6"," -4.9"," -3.0"," 3.0"," 3.5"," 4.0"," -4.8"," -2.9"," -4.3"," -4.4"," 7.3"," 4.9"," -4.4"," -4.2"," -2.8"," 3.0"," -4.1"," 7.2"," 2.9"," -3.5"," -2.9"," -3.5"," -4.4"," 4.2"," -3.7"," -6.0"," 7.8"," -4.1"," -4.4","-10.3"," -8.9"," -9.2"," -4.0"," -7.7"," 3.4"," 5.1"," 3.3"," -4.2"," 7.8"," -3.0"," -3.8"," 4.4"," 3.3"," 4.7"," 7.4"," -3.4"," 3.1"," -3.8"," -3.1"," -5.6"," -7.0"," -9.3"," -5.3"," 3.3"," 22.2"," 3.6"," -3.1"," -5.9","-11.9"," -7.0"," 3.6"," 5.1"," 3.7","-10.0"," 2.9"," -2.8"," -3.4"," -3.1"," 3.4"," -3.0"," -5.2"," 3.5"," 6.3"," 3.3"," -5.6"," 2.8"," -5.6"," -3.2"," -3.2"," 3.9"," 3.9"," 3.1"," -3.4"," 6.5"," 3.6"," -5.8"," -5.1"," 3.1"," -3.8"," -4.7"," -3.0"," 3.2"," 5.7"," 5.2"," -3.1"," 3.4"," -3.2"," 4.0"," 4.5"," -3.7"," -5.3"," 4.0"," 6.3"," 3.5"," -3.6"," -3.8"," -3.9"," 3.7"," -4.3"," -7.3"," 5.4"," -2.8"," -3.3"," -4.5"," -4.9"," -4.9"," 4.6"," -3.3"," -4.5"," 2.9"," 5.0"," 5.4"," -3.2"," 4.1"," -4.8"," 5.1"," -3.1"," -2.9"," 3.0"," -3.0"," 3.2"," 3.0"," -4.5"," 4.4"," 6.6"," 4.2"," -5.9"," -6.6"," 4.7"," -4.7"," 3.7"," 4.0"," 3.3"," -3.6"," 9.7"," 3.3"," -3.3"," -5.6"," -6.5"," -2.9"," 6.3"," 4.3"," 3.6"," -4.2"," 3.4"," 2.9"," 4.6"," -3.1"," 2.8"," -3.6"," 3.8"," 4.7"," 4.3"," -3.0"," -2.9"," 3.3"," -3.4"," 11.0"," 7.1"," 4.1"," 4.3"," 9.9"," 9.8"," -4.9"," -3.1"," -3.2"," -3.0"," -3.0"," -7.6","-22.8"," -3.0"," -2.9"," 4.2"," -5.3"," 3.7"," 2.8"," 3.6"," -2.9"," 4.1"," -3.1"," -3.9"," -3.9"," -3.6"," -2.9"," 5.4"," -2.9"," -4.3"," 2.9"," 10.4"," 3.3"," -5.3"," 3.7"," 2.9"," 6.1"," 12.7"," 5.4"," -7.3"," 3.1"," 3.2"," 3.0"," 4.8"," 5.3"," 4.4"," 3.7"," 5.2"," -5.4"," 3.4"," -4.1"," -4.2"," -2.8"," -6.4"," -5.8"," 2.8"," -3.6"," 3.6"," 3.8"," 6.1"," -4.3"," 3.8"," 2.8"," -3.0"," 5.8"," 3.8"," 4.5"," 3.1"," 5.4"," 4.4"," 4.9"," -6.4"," 4.6"," 3.5"," 3.2"," 3.4"," -3.4"," 22.7"," 3.8"," -4.2"," 6.6"," -3.2"," 3.4"," 16.1"," -3.5"," -2.8"," -7.2"," 8.2"," -3.3"," 3.4"," -4.6"," 8.2"," -3.6"," -3.7"," -3.0"," 5.0"," -3.2"," 5.6"," -3.4"," 3.1"," 3.0"," 5.7"," 2.9"," -3.1"," 5.9"," 3.8"," -3.0"," -6.4"," 2.9"," 3.6"," -3.1"," 3.0"," 3.4"," -6.2"," 2.8"," -3.4"," -3.4"," 3.1"," -3.7"," 4.5"," -3.1"," -2.9"," -2.8"," 3.4"," -3.1"," -5.8"," 3.8"," -3.3"," -7.3"," 3.4"," -4.2"," 5.3"," 3.1"," -3.2"," -4.2"," 4.2"," -4.5"," 4.3"," 7.3"," -7.0"," 5.3"," 6.5"," 8.3"," -4.8"," 3.0"," -4.2"," -5.5"," -3.7"," 3.1"," 5.8"," 5.9"," 3.5"," -4.3"," -6.1"," 6.8"," -3.7"," 2.9"," -3.8"," 5.4"," -3.2"," -3.2"," -4.8"," 7.6"," 4.9"," 3.1"," 3.2"," -3.8"," 3.6"," 7.4"," 4.2"," -3.2"," 6.3"," 5.6"," -4.0"," -4.2"," -2.9"," 4.2"," 3.4"," 3.3","-11.1"," -3.0"," -4.3"," -3.6"," -2.9"," -4.5"," -4.7"," 3.6"," -3.7"," -3.0"," -7.7"," 3.6"," -5.5"," 6.0"," 3.4"," -2.9"," 5.1"," 3.4"," 3.0"," -2.8"," -5.0"," 4.1"," -4.1"," 3.3"," -3.3"," 3.8"," -7.2"," 4.9"," -8.3"," -4.5"," -3.1"," 3.9"," -3.8"," 4.9"," 3.3"," -3.4"," -4.2"," -2.9"," 3.6"," 3.3"," 4.3"," 4.1"," 3.3"," 3.5"," -6.8"," -4.8"," 4.1"," 6.9"," 4.7"," 4.0"," -3.3"," 3.8"," 5.2"," 3.4"," 4.5"," -2.9"," -5.4"," 3.9"," -6.6","-11.6"," -6.7"," -4.4"," 5.7"," 3.0"," -2.9"," 11.1"," -3.3"," -3.6"," 10.4"," -3.8"," -5.3"," -3.6"," -2.9"," 3.1"," 3.4"," 4.2"," -3.8"," -5.1"," 3.5"," 3.2"," 3.5"," 7.5"," -6.1"," 4.0"," 5.4"," -3.8"," -7.3"," -2.9"," -2.9"," 2.9"," 13.1"," -7.7"," 2.9"," 4.3"," 3.5"," -3.1"," -3.1"," -3.0"," 3.7"," 7.7"," 4.5"," -5.8"," 16.4"," 8.9"," -4.1"," 4.2"," -7.2"," 3.0"," 3.8"," 12.1"," 2.9"," -3.9"," 3.4"," 4.5"," 4.4"," -3.8"," 3.0"," 4.3"," 18.6"," -3.6"," -4.0"," 6.6"," -5.8"," -2.9"," -3.7"," -4.5","-11.7"," 3.1"," 5.3"," -5.9"," -3.7"," 3.0"," -3.1"," 3.8"," 7.0"," 3.4"," -3.8"," 6.0"," 3.5"," 4.7"," -4.1"," -3.2"," 3.4"," -3.2"," 3.4"," 3.6"," -4.4"," -6.6"," -6.6"," -7.3"," 3.6"," 3.1"," 3.3"," -5.5"," 4.6"," 3.9"," -3.9"," -5.0"," -3.2"," -8.1"," -3.1"," -5.8"," 2.9"," 3.3"," 3.3"," 3.0"," 3.6"," -3.3"," 3.1"," -3.3"," -6.3"," -2.9"," 4.5"," -3.7"," -4.4"," 4.8"," 4.0"," -4.5"," 5.1"," 7.6"," -4.0"," 4.6"," -3.2"," -3.1"," 3.5"," 2.9"," 5.7"," 4.2"," 3.3"," -4.1"," -3.5"," 5.6"," 8.5"," -2.9"," 7.8"," -3.2"," -3.5"," 3.3"," 3.0"," -8.7"," -3.2"," 4.0"," 5.8"," 8.5"," -3.8"," -9.1"," -3.0"," 3.3"," -5.2"," 3.1"," -2.8"," -3.8"," 6.4"," 7.2"," -3.2"," -4.9"," -5.7"," 5.9"," 3.6"," -3.8"," 3.6"," -5.4"," 10.0"," 3.2"," -4.9"," -4.9"," -3.3"," 6.1"," 3.0"," -4.1"," -3.6"," 3.2"," -3.2"," -3.3"," 3.7"," -3.3"," 3.4"," -2.8"," -8.4"," -7.9"," 5.1"," 3.8"," -3.9"," 3.5"," -5.7"," -5.9"," -2.9"," 6.4"," 5.9"," -5.4"," 3.1"," -6.4"," 3.4"," -7.6"," -3.8"," 3.2"," 3.0"," 3.0"," 4.1"," -4.9"," 3.6"," -4.2"," -6.9"," -4.3"," 12.5"," 6.7"," 5.3"," 4.2"," 5.2"," 3.4"," 4.2"," 3.1"," 3.1"," 3.4"," 6.0"," 5.0"," 9.9"," -7.0"," 27.4"," -3.9"," 3.3"," 3.4"," 8.8"," -4.2"," -3.2"," 12.0"," -6.4"," 3.6"," -7.8"," -5.1"," -3.2"," -4.1"," -3.6"," -6.2"," 4.3"," 5.1"," 6.9"," -3.5"," -4.4"," -2.9"," 5.2"," -3.0"," -3.0"," -3.6"," 3.5"," -3.8"," 3.1"," 3.2"," 2.8"," 6.0"," 17.9"," 3.3"," -3.6"," 5.9"," -2.9"," 13.0"," 9.4"," -8.6"," 5.2"," -3.2"," -3.0"," 3.1"," 6.5"," 5.8"," 3.2"," 5.1"," 4.1"," 11.3"," 4.3"," 3.8"," 2.9"," 3.7"," -3.1"," -4.0"," -2.8"," 3.9"," -3.5"," -3.7"," 4.4"," -2.9"," 3.1"," 5.4"," 5.2"," 5.4"," 4.8"," -3.5"," 3.0"," 3.0"," -4.3"," 2.8"," 6.1"," 4.3"," 2.9"," 9.5"," 3.1"," -3.9"," 4.2"," 3.3"," 3.1"," -3.5"," -7.6"," 4.0"," 6.0"," 3.2","-13.2"," 3.8"," -4.5"," -3.6"," 3.8"," -3.3"," -8.3"," -3.0"," -3.9"," 5.2"," -3.8"," -6.8"," 7.2"," -3.3"," -3.8"," -3.5"," 5.2"," -2.8"," -3.9"," 3.7"," -8.4"," -4.8"," -3.6"," 3.1"," -6.0"," -3.4"," -3.0"," 3.7"," 11.1"," 6.6"," 5.4"," 3.2"," -6.7"," -4.5"," 5.7"," 4.4"," -3.2"," 4.1"," 4.0"," -3.1"," 3.0"," -3.5"," 7.0"," -2.8"," 2.8"," -3.2"," 6.5"," -3.0"," -3.7"," -3.3"," 3.2"," 3.8"," 3.5"," -3.0"," -6.9"," -4.8"," 8.2"," 10.2"," -4.9"," 4.0"," 3.1"," -4.0"," 9.9"," -2.9"," 5.1"," -4.2"," 3.4"," 3.1"," -4.3"," -3.3"," -4.4"," -3.1"," 3.2"," 4.9"," 3.3"," 3.4"," 4.0"," 2.9"," 3.2"," -5.1"," -7.4"," -4.9"," 3.0"," 2.8"," -3.7"," -3.3"," -3.9"," -3.3"," -5.0"," -2.9"," -5.2"," -3.9"," 3.9"," -3.9"," -3.4"," -5.5"," -3.6"," 4.3"," 6.5"," -3.4"," -3.9"," 4.7"," -4.1"," -8.8"," 3.4"," 4.3"," 2.8"," 4.4"," -3.2"," -5.1"," 3.2"," 3.3"," 4.7"," 3.4"," 5.5"," -2.8"," -3.7"," -6.4"," -3.8"," -5.1"," -7.9"," 2.9"," -8.4"," -4.2"," 4.0"," 4.4"," 4.2"," 9.9"," 7.6"," -4.1"],"pvalue":[" 5.1e-07"," 3.8e-03"," 9.5e-49"," 2.6e-03"," 1.1e-11"," 3.3e-04"," 8.7e-07"," 2.6e-03"," 2.9e-03"," 5.0e-04"," 5.3e-05"," 1.6e-06"," 3.2e-03"," 2.0e-05"," 1.0e-05"," 3.5e-13"," 9.9e-07"," 8.7e-06"," 2.6e-05"," 5.0e-03"," 2.6e-03"," 4.1e-05"," 4.3e-13"," 3.8e-03"," 4.5e-04"," 3.3e-03"," 4.0e-04"," 8.6e-06"," 2.2e-05"," 2.1e-04"," 2.4e-09"," 7.9e-15"," 5.1e-05"," 8.7e-06"," 4.4e-25"," 4.6e-19"," 2.9e-20"," 6.3e-05"," 1.5e-14"," 6.7e-04"," 2.8e-07"," 1.0e-03"," 2.8e-05"," 8.6e-15"," 2.7e-03"," 1.8e-04"," 9.8e-06"," 1.1e-03"," 2.1e-06"," 9.9e-14"," 6.8e-04"," 1.9e-03"," 1.4e-04"," 2.0e-03"," 1.7e-08"," 2.7e-12"," 2.0e-20"," 1.1e-07"," 1.1e-03","9.6e-109"," 3.2e-04"," 1.9e-03"," 3.2e-09"," 8.9e-33"," 1.9e-12"," 3.7e-04"," 3.7e-07"," 2.5e-04"," 2.1e-23"," 4.3e-03"," 4.9e-03"," 7.0e-04"," 1.7e-03"," 6.4e-04"," 2.9e-03"," 2.0e-07"," 4.4e-04"," 3.1e-10"," 9.3e-04"," 2.8e-08"," 5.1e-03"," 2.1e-08"," 1.2e-03"," 1.4e-03"," 8.7e-05"," 8.8e-05"," 2.1e-03"," 7.9e-04"," 8.2e-11"," 2.6e-04"," 7.2e-09"," 3.4e-07"," 2.2e-03"," 1.7e-04"," 2.4e-06"," 3.1e-03"," 1.2e-03"," 1.3e-08"," 1.6e-07"," 2.1e-03"," 6.5e-04"," 1.6e-03"," 6.3e-05"," 6.2e-06"," 2.4e-04"," 1.2e-07"," 5.9e-05"," 3.1e-10"," 4.0e-04"," 3.2e-04"," 1.5e-04"," 8.3e-05"," 2.5e-04"," 1.4e-05"," 2.1e-13"," 7.0e-08"," 4.4e-03"," 8.2e-04"," 7.7e-06"," 1.2e-06"," 9.9e-07"," 3.5e-06"," 9.9e-04"," 6.3e-06"," 4.1e-03"," 4.4e-07"," 6.5e-08"," 1.5e-03"," 3.6e-05"," 1.3e-06"," 3.3e-07"," 2.2e-03"," 3.9e-03"," 2.3e-03"," 2.6e-03"," 1.4e-03"," 2.8e-03"," 5.9e-06"," 1.3e-05"," 5.2e-11"," 2.3e-05"," 2.7e-09"," 4.8e-11"," 2.5e-06"," 3.3e-06"," 2.1e-04"," 6.3e-05"," 9.2e-04"," 3.5e-04"," 3.5e-22"," 1.0e-03"," 1.0e-03"," 1.7e-08"," 6.5e-11"," 4.0e-03"," 3.8e-10"," 1.8e-05"," 3.8e-04"," 2.5e-05"," 5.7e-04"," 3.8e-03"," 4.7e-06"," 1.9e-03"," 5.0e-03"," 3.8e-04"," 1.4e-04"," 2.3e-06"," 2.1e-05"," 2.5e-03"," 3.8e-03"," 1.1e-03"," 6.9e-04"," 6.0e-28"," 1.0e-12"," 4.0e-05"," 1.5e-05"," 6.1e-23"," 8.9e-23"," 8.4e-07"," 1.9e-03"," 1.3e-03"," 2.5e-03"," 2.4e-03"," 2.8e-14","1.5e-115"," 2.7e-03"," 3.5e-03"," 2.7e-05"," 9.1e-08"," 2.0e-04"," 4.5e-03"," 2.8e-04"," 4.2e-03"," 4.8e-05"," 2.2e-03"," 9.4e-05"," 8.5e-05"," 2.7e-04"," 3.6e-03"," 7.0e-08"," 3.3e-03"," 2.0e-05"," 3.5e-03"," 2.2e-25"," 9.8e-04"," 9.6e-08"," 1.9e-04"," 3.2e-03"," 1.2e-09"," 3.8e-37"," 6.7e-08"," 3.8e-13"," 2.2e-03"," 1.2e-03"," 2.8e-03"," 2.0e-06"," 9.3e-08"," 1.0e-05"," 2.0e-04"," 2.3e-07"," 5.2e-08"," 7.3e-04"," 4.1e-05"," 3.3e-05"," 4.7e-03"," 1.6e-10"," 5.8e-09"," 4.8e-03"," 2.8e-04"," 2.7e-04"," 1.3e-04"," 8.5e-10"," 1.8e-05"," 1.3e-04"," 4.8e-03"," 2.8e-03"," 8.2e-09"," 1.6e-04"," 7.7e-06"," 2.1e-03"," 8.2e-08"," 9.9e-06"," 8.5e-07"," 1.3e-10"," 3.8e-06"," 5.4e-04"," 1.2e-03"," 6.9e-04"," 7.3e-04","1.3e-113"," 1.6e-04"," 2.7e-05"," 4.1e-11"," 1.3e-03"," 5.8e-04"," 2.9e-58"," 4.2e-04"," 4.5e-03"," 8.4e-13"," 2.2e-16"," 9.6e-04"," 7.2e-04"," 5.1e-06"," 2.0e-16"," 2.8e-04"," 2.2e-04"," 3.0e-03"," 5.2e-07"," 1.6e-03"," 1.9e-08"," 6.0e-04"," 1.9e-03"," 2.3e-03"," 9.2e-09"," 3.7e-03"," 1.9e-03"," 4.2e-09"," 1.6e-04"," 2.5e-03"," 2.0e-10"," 4.0e-03"," 3.8e-04"," 1.8e-03"," 2.9e-03"," 7.4e-04"," 4.5e-10"," 4.8e-03"," 7.4e-04"," 7.4e-04"," 2.0e-03"," 1.9e-04"," 7.3e-06"," 1.9e-03"," 3.5e-03"," 4.9e-03"," 7.4e-04"," 2.0e-03"," 6.4e-09"," 1.4e-04"," 9.8e-04"," 4.1e-13"," 6.5e-04"," 3.2e-05"," 9.1e-08"," 2.2e-03"," 1.4e-03"," 2.8e-05"," 2.3e-05"," 7.8e-06"," 1.4e-05"," 2.4e-13"," 3.2e-12"," 1.1e-07"," 8.0e-11"," 8.1e-17"," 2.0e-06"," 3.1e-03"," 2.3e-05"," 3.1e-08"," 2.0e-04"," 2.2e-03"," 6.5e-09"," 3.2e-09"," 5.2e-04"," 1.9e-05"," 1.4e-09"," 1.3e-11"," 2.1e-04"," 4.1e-03"," 1.5e-04"," 8.8e-08"," 1.2e-03"," 1.6e-03"," 1.8e-06"," 3.1e-14"," 1.0e-06"," 2.0e-03"," 1.4e-03"," 1.2e-04"," 3.7e-04"," 1.7e-13"," 2.8e-05"," 1.6e-03"," 3.0e-10"," 2.6e-08"," 5.7e-05"," 3.1e-05"," 3.7e-03"," 2.2e-05"," 6.2e-04"," 8.3e-04"," 7.4e-29"," 2.6e-03"," 1.4e-05"," 3.6e-04"," 4.3e-03"," 5.8e-06"," 2.2e-06"," 2.7e-04"," 2.3e-04"," 2.8e-03"," 1.6e-14"," 2.9e-04"," 3.7e-08"," 1.8e-09"," 6.9e-04"," 3.7e-03"," 2.8e-07"," 6.3e-04"," 2.4e-03"," 4.6e-03"," 4.7e-07"," 5.1e-05"," 3.9e-05"," 1.1e-03"," 9.2e-04"," 1.7e-04"," 6.1e-13"," 8.6e-07"," 1.1e-16"," 7.2e-06"," 1.7e-03"," 1.1e-04"," 1.5e-04"," 9.0e-07"," 8.5e-04"," 6.9e-04"," 3.2e-05"," 3.4e-03"," 3.0e-04"," 9.9e-04"," 1.8e-05"," 5.1e-05"," 1.0e-03"," 5.4e-04"," 1.3e-11"," 2.0e-06"," 4.9e-05"," 6.8e-12"," 3.2e-06"," 5.3e-05"," 9.8e-04"," 1.6e-04"," 2.2e-07"," 5.7e-04"," 5.4e-06"," 3.2e-03"," 8.0e-08"," 9.1e-05"," 3.2e-11"," 5.3e-31"," 1.8e-11"," 1.3e-05"," 1.1e-08"," 2.3e-03"," 3.8e-03"," 2.0e-28"," 1.1e-03"," 2.9e-04"," 2.9e-25"," 1.2e-04"," 1.4e-07"," 2.9e-04"," 4.3e-03"," 2.2e-03"," 6.0e-04"," 2.5e-05"," 1.6e-04"," 4.2e-07"," 4.1e-04"," 1.3e-03"," 4.4e-04"," 7.6e-14"," 1.2e-09"," 7.0e-05"," 8.1e-08"," 1.2e-04"," 2.6e-13"," 4.1e-03"," 3.3e-03"," 3.5e-03"," 3.8e-39"," 1.7e-14"," 3.5e-03"," 1.9e-05"," 5.3e-04"," 2.1e-03"," 1.7e-03"," 2.5e-03"," 1.8e-04"," 1.2e-14"," 6.9e-06"," 8.7e-09"," 3.9e-60"," 5.1e-19"," 3.9e-05"," 3.0e-05"," 5.6e-13"," 2.9e-03"," 1.2e-04"," 1.2e-33"," 3.9e-03"," 8.6e-05"," 7.2e-04"," 8.5e-06"," 9.6e-06"," 1.7e-04"," 2.8e-03"," 2.0e-05"," 1.3e-77"," 3.4e-04"," 5.7e-05"," 4.3e-11"," 8.3e-09"," 4.0e-03"," 1.9e-04"," 7.6e-06"," 8.6e-32"," 2.2e-03"," 1.3e-07"," 3.7e-09"," 2.4e-04"," 2.6e-03"," 2.2e-03"," 1.7e-04"," 2.8e-12"," 7.4e-04"," 1.3e-04"," 2.0e-09"," 4.4e-04"," 2.3e-06"," 4.5e-05"," 1.3e-03"," 7.6e-04"," 1.2e-03"," 6.1e-04"," 3.2e-04"," 1.3e-05"," 3.3e-11"," 5.2e-11"," 2.3e-13"," 3.6e-04"," 2.1e-03"," 1.0e-03"," 4.1e-08"," 4.0e-06"," 1.1e-04"," 8.1e-05"," 6.3e-07"," 1.6e-03"," 6.4e-16"," 1.9e-03"," 7.9e-09"," 3.4e-03"," 1.1e-03"," 9.0e-04"," 2.8e-03"," 3.0e-04"," 1.1e-03"," 1.7e-03"," 1.1e-03"," 3.5e-10"," 3.5e-03"," 5.5e-06"," 2.4e-04"," 1.2e-05"," 1.8e-06"," 7.8e-05"," 7.0e-06"," 3.4e-07"," 2.4e-14"," 6.2e-05"," 3.8e-06"," 1.6e-03"," 1.7e-03"," 4.3e-04"," 3.2e-03"," 1.3e-08"," 2.3e-05"," 9.9e-04"," 4.4e-05"," 4.9e-04"," 2.5e-08"," 2.9e-17"," 3.4e-03"," 4.5e-15"," 1.5e-03"," 5.2e-04"," 9.4e-04"," 3.1e-03"," 3.8e-18"," 1.3e-03"," 7.7e-05"," 7.8e-09"," 1.3e-17"," 1.4e-04"," 7.4e-20"," 2.9e-03"," 9.9e-04"," 2.3e-07"," 1.7e-03"," 4.8e-03"," 1.3e-04"," 1.4e-10"," 7.1e-13"," 1.4e-03"," 1.2e-06"," 1.0e-08"," 4.4e-09"," 2.6e-04"," 1.3e-04"," 3.3e-04"," 5.2e-08"," 1.4e-23"," 1.4e-03"," 1.0e-06"," 1.2e-06"," 8.4e-04"," 9.4e-10"," 2.4e-03"," 3.7e-05"," 3.0e-04"," 1.6e-03"," 1.6e-03"," 8.6e-04"," 2.1e-04"," 1.1e-03"," 8.0e-04"," 4.6e-03"," 5.8e-17"," 3.7e-15"," 3.0e-07"," 1.5e-04"," 8.5e-05"," 5.1e-04"," 9.2e-09"," 2.8e-09"," 3.2e-03"," 1.4e-10"," 3.8e-09"," 8.2e-08"," 1.7e-03"," 1.9e-10"," 7.2e-04"," 2.0e-14"," 1.4e-04"," 1.4e-03"," 3.1e-03"," 2.9e-03"," 4.3e-05"," 1.1e-06"," 3.3e-04"," 3.0e-05"," 5.3e-12"," 1.7e-05"," 4.1e-36"," 1.9e-11"," 1.3e-07"," 3.0e-05"," 2.5e-07"," 5.9e-04"," 2.9e-05"," 1.9e-03"," 2.0e-03"," 6.1e-04"," 2.4e-09"," 7.3e-07"," 4.6e-23"," 2.3e-12","4.9e-165"," 8.7e-05"," 8.9e-04"," 6.5e-04"," 2.1e-18"," 3.1e-05"," 1.3e-03"," 2.1e-33"," 1.6e-10"," 3.6e-04"," 5.6e-15"," 3.1e-07"," 1.2e-03"," 3.5e-05"," 2.8e-04"," 6.1e-10"," 1.6e-05"," 3.0e-07"," 7.1e-12"," 4.3e-04"," 8.9e-06"," 3.5e-03"," 2.2e-07"," 3.1e-03"," 2.8e-03"," 3.2e-04"," 5.0e-04"," 1.5e-04"," 1.8e-03"," 1.6e-03"," 5.0e-03"," 1.6e-09"," 1.3e-71"," 9.1e-04"," 3.8e-04"," 4.3e-09"," 4.1e-03"," 8.7e-39"," 8.0e-21"," 8.6e-18"," 2.1e-07"," 1.3e-03"," 2.4e-03"," 1.8e-03"," 8.3e-11"," 7.8e-09"," 1.5e-03"," 4.2e-07"," 3.9e-05"," 1.7e-29"," 1.6e-05"," 1.5e-04"," 4.1e-03"," 2.0e-04"," 1.8e-03"," 7.7e-05"," 4.8e-03"," 1.2e-04"," 3.9e-04"," 2.1e-04"," 1.2e-05"," 3.7e-03"," 2.1e-03"," 5.7e-08"," 1.8e-07"," 7.5e-08"," 2.0e-06"," 5.0e-04"," 3.1e-03"," 3.1e-03"," 1.7e-05"," 4.5e-03"," 9.5e-10"," 2.0e-05"," 3.4e-03"," 1.5e-21"," 1.7e-03"," 8.0e-05"," 3.1e-05"," 9.1e-04"," 1.8e-03"," 5.2e-04"," 4.2e-14"," 5.7e-05"," 2.1e-09"," 1.6e-03"," 1.3e-39"," 1.2e-04"," 8.4e-06"," 3.3e-04"," 1.5e-04"," 9.7e-04"," 1.4e-16"," 2.7e-03"," 1.0e-04"," 2.1e-07"," 1.6e-04"," 1.3e-11"," 6.5e-13"," 9.7e-04"," 1.3e-04"," 5.6e-04"," 2.2e-07"," 4.5e-03"," 1.2e-04"," 2.0e-04"," 6.2e-17"," 1.4e-06"," 2.7e-04"," 2.0e-03"," 1.8e-09"," 6.8e-04"," 2.7e-03"," 2.4e-04"," 1.1e-28"," 4.3e-11"," 6.0e-08"," 1.4e-03"," 2.6e-11"," 6.2e-06"," 1.5e-08"," 9.7e-06"," 1.2e-03"," 5.1e-05"," 5.7e-05"," 1.8e-03"," 2.9e-03"," 5.4e-04"," 2.6e-12"," 4.9e-03"," 4.6e-03"," 1.6e-03"," 1.1e-10"," 2.6e-03"," 1.8e-04"," 8.3e-04"," 1.5e-03"," 1.4e-04"," 4.8e-04"," 2.4e-03"," 4.9e-12"," 1.9e-06"," 1.6e-16"," 1.8e-24"," 1.1e-06"," 6.6e-05"," 1.8e-03"," 7.4e-05"," 3.5e-23"," 3.6e-03"," 2.6e-07"," 2.3e-05"," 8.0e-04"," 2.0e-03"," 1.4e-05"," 8.6e-04"," 9.9e-06"," 1.9e-03"," 1.5e-03"," 1.1e-06"," 1.0e-03"," 6.1e-04"," 7.6e-05"," 4.1e-03"," 1.2e-03"," 3.8e-07"," 1.1e-13"," 8.7e-07"," 3.1e-03"," 4.9e-03"," 2.2e-04"," 1.1e-03"," 8.0e-05"," 8.5e-04"," 6.8e-07"," 3.5e-03"," 1.9e-07"," 9.9e-05"," 1.0e-04"," 8.4e-05"," 5.7e-04"," 3.5e-08"," 3.6e-04"," 1.9e-05"," 9.6e-11"," 6.1e-04"," 1.0e-04"," 2.2e-06"," 4.4e-05"," 9.1e-19"," 6.0e-04"," 1.9e-05"," 5.1e-03"," 9.1e-06"," 1.2e-03"," 3.0e-07"," 1.3e-03"," 8.6e-04"," 2.5e-06"," 7.0e-04"," 4.1e-08"," 4.4e-03"," 1.9e-04"," 1.8e-10"," 1.6e-04"," 3.8e-07"," 2.4e-15"," 4.3e-03"," 4.8e-17"," 2.3e-05"," 5.8e-05"," 1.3e-05"," 2.1e-05"," 3.7e-23"," 3.3e-14"," 4.4e-05"],"padj":[" 1.7e-05"," 3.9e-02"," 8.8e-46"," 2.9e-02"," 8.6e-10"," 5.3e-03"," 2.9e-05"," 2.9e-02"," 3.2e-02"," 7.7e-03"," 1.1e-03"," 5.0e-05"," 3.5e-02"," 4.9e-04"," 2.7e-04"," 3.5e-11"," 3.2e-05"," 2.3e-04"," 6.1e-04"," 5.0e-02"," 2.9e-02"," 9.0e-04"," 4.1e-11"," 3.9e-02"," 6.9e-03"," 3.5e-02"," 6.3e-03"," 2.3e-04"," 5.3e-04"," 3.6e-03"," 1.3e-07"," 1.0e-12"," 1.1e-03"," 2.3e-04"," 1.4e-22"," 9.1e-17"," 5.9e-18"," 1.3e-03"," 1.8e-12"," 9.7e-03"," 1.0e-05"," 1.3e-02"," 6.4e-04"," 1.1e-12"," 3.0e-02"," 3.1e-03"," 2.6e-04"," 1.5e-02"," 6.4e-05"," 1.1e-11"," 9.8e-03"," 2.3e-02"," 2.5e-03"," 2.4e-02"," 7.8e-07"," 2.3e-10"," 4.3e-18"," 4.4e-06"," 1.5e-02","2.0e-105"," 5.2e-03"," 2.3e-02"," 1.7e-07"," 4.3e-30"," 1.7e-10"," 5.9e-03"," 1.3e-05"," 4.2e-03"," 5.7e-21"," 4.4e-02"," 4.9e-02"," 1.0e-02"," 2.1e-02"," 9.3e-03"," 3.2e-02"," 7.6e-06"," 6.7e-03"," 1.9e-08"," 1.3e-02"," 1.3e-06"," 5.0e-02"," 9.8e-07"," 1.5e-02"," 1.8e-02"," 1.7e-03"," 1.7e-03"," 2.5e-02"," 1.1e-02"," 5.6e-09"," 4.4e-03"," 3.6e-07"," 1.2e-05"," 2.5e-02"," 3.1e-03"," 7.0e-05"," 3.3e-02"," 1.6e-02"," 6.0e-07"," 6.2e-06"," 2.4e-02"," 9.5e-03"," 2.0e-02"," 1.3e-03"," 1.7e-04"," 4.0e-03"," 4.6e-06"," 1.2e-03"," 1.9e-08"," 6.2e-03"," 5.2e-03"," 2.7e-03"," 1.7e-03"," 4.2e-03"," 3.5e-04"," 2.2e-11"," 2.9e-06"," 4.5e-02"," 1.1e-02"," 2.1e-04"," 3.7e-05"," 3.2e-05"," 1.0e-04"," 1.3e-02"," 1.8e-04"," 4.2e-02"," 1.5e-05"," 2.8e-06"," 1.9e-02"," 7.9e-04"," 4.2e-05"," 1.2e-05"," 2.5e-02"," 4.0e-02"," 2.7e-02"," 2.9e-02"," 1.7e-02"," 3.1e-02"," 1.7e-04"," 3.3e-04"," 3.7e-09"," 5.4e-04"," 1.5e-07"," 3.5e-09"," 7.5e-05"," 9.7e-05"," 3.6e-03"," 1.3e-03"," 1.2e-02"," 5.7e-03"," 8.2e-20"," 1.4e-02"," 1.3e-02"," 7.9e-07"," 4.5e-09"," 4.1e-02"," 2.3e-08"," 4.4e-04"," 6.0e-03"," 5.8e-04"," 8.5e-03"," 3.9e-02"," 1.4e-04"," 2.3e-02"," 4.9e-02"," 6.0e-03"," 2.5e-03"," 6.8e-05"," 5.0e-04"," 2.8e-02"," 3.9e-02"," 1.4e-02"," 1.0e-02"," 2.1e-25"," 9.3e-11"," 8.8e-04"," 3.7e-04"," 1.5e-20"," 2.1e-20"," 2.8e-05"," 2.3e-02"," 1.6e-02"," 2.9e-02"," 2.8e-02"," 3.2e-12","6.4e-112"," 3.0e-02"," 3.7e-02"," 6.3e-04"," 3.7e-06"," 3.5e-03"," 4.6e-02"," 4.6e-03"," 4.3e-02"," 1.0e-03"," 2.5e-02"," 1.8e-03"," 1.7e-03"," 4.5e-03"," 3.8e-02"," 2.9e-06"," 3.5e-02"," 4.9e-04"," 3.7e-02"," 7.3e-23"," 1.3e-02"," 3.8e-06"," 3.3e-03"," 3.5e-02"," 6.9e-08"," 2.4e-34"," 2.9e-06"," 3.7e-11"," 2.6e-02"," 1.5e-02"," 3.1e-02"," 6.0e-05"," 3.8e-06"," 2.7e-04"," 3.5e-03"," 8.7e-06"," 2.2e-06"," 1.0e-02"," 9.0e-04"," 7.4e-04"," 4.7e-02"," 1.0e-08"," 3.0e-07"," 4.8e-02"," 4.6e-03"," 4.5e-03"," 2.5e-03"," 5.1e-08"," 4.6e-04"," 2.5e-03"," 4.8e-02"," 3.1e-02"," 4.0e-07"," 2.9e-03"," 2.1e-04"," 2.5e-02"," 3.4e-06"," 2.6e-04"," 2.8e-05"," 8.4e-09"," 1.1e-04"," 8.1e-03"," 1.6e-02"," 9.9e-03"," 1.0e-02","3.7e-110"," 2.9e-03"," 6.3e-04"," 3.1e-09"," 1.6e-02"," 8.7e-03"," 3.0e-55"," 6.5e-03"," 4.6e-02"," 7.6e-11"," 3.1e-14"," 1.3e-02"," 1.0e-02"," 1.5e-04"," 3.0e-14"," 4.6e-03"," 3.7e-03"," 3.2e-02"," 1.8e-05"," 1.9e-02"," 8.7e-07"," 8.9e-03"," 2.2e-02"," 2.6e-02"," 4.4e-07"," 3.8e-02"," 2.3e-02"," 2.2e-07"," 2.9e-03"," 2.9e-02"," 1.3e-08"," 4.1e-02"," 6.0e-03"," 2.2e-02"," 3.2e-02"," 1.0e-02"," 2.7e-08"," 4.8e-02"," 1.0e-02"," 1.0e-02"," 2.3e-02"," 3.4e-03"," 2.0e-04"," 2.2e-02"," 3.7e-02"," 4.9e-02"," 1.0e-02"," 2.3e-02"," 3.3e-07"," 2.5e-03"," 1.3e-02"," 4.0e-11"," 9.5e-03"," 7.2e-04"," 3.7e-06"," 2.5e-02"," 1.7e-02"," 6.4e-04"," 5.5e-04"," 2.1e-04"," 3.6e-04"," 2.5e-11"," 2.7e-10"," 4.5e-06"," 5.6e-09"," 1.3e-14"," 6.0e-05"," 3.3e-02"," 5.4e-04"," 1.4e-06"," 3.4e-03"," 2.5e-02"," 3.3e-07"," 1.7e-07"," 7.9e-03"," 4.7e-04"," 7.9e-08"," 1.0e-09"," 3.6e-03"," 4.2e-02"," 2.7e-03"," 3.6e-06"," 1.5e-02"," 2.0e-02"," 5.7e-05"," 3.5e-12"," 3.3e-05"," 2.3e-02"," 1.7e-02"," 2.3e-03"," 5.9e-03"," 1.7e-11"," 6.4e-04"," 2.0e-02"," 1.9e-08"," 1.2e-06"," 1.2e-03"," 6.9e-04"," 3.8e-02"," 5.2e-04"," 9.0e-03"," 1.2e-02"," 3.0e-26"," 2.9e-02"," 3.6e-04"," 5.8e-03"," 4.4e-02"," 1.6e-04"," 6.5e-05"," 4.5e-03"," 3.9e-03"," 3.1e-02"," 2.0e-12"," 4.7e-03"," 1.6e-06"," 1.0e-07"," 9.9e-03"," 3.8e-02"," 1.0e-05"," 9.2e-03"," 2.8e-02"," 4.6e-02"," 1.6e-05"," 1.1e-03"," 8.7e-04"," 1.4e-02"," 1.3e-02"," 3.0e-03"," 5.7e-11"," 2.8e-05"," 1.7e-14"," 2.0e-04"," 2.0e-02"," 2.2e-03"," 2.7e-03"," 2.9e-05"," 1.2e-02"," 9.9e-03"," 7.3e-04"," 3.6e-02"," 4.9e-03"," 1.3e-02"," 4.4e-04"," 1.1e-03"," 1.3e-02"," 8.1e-03"," 1.0e-09"," 6.0e-05"," 1.1e-03"," 5.5e-10"," 9.4e-05"," 1.1e-03"," 1.3e-02"," 2.9e-03"," 8.3e-06"," 8.5e-03"," 1.6e-04"," 3.4e-02"," 3.3e-06"," 1.8e-03"," 2.4e-09"," 2.3e-28"," 1.4e-09"," 3.4e-04"," 5.1e-07"," 2.7e-02"," 3.9e-02"," 7.3e-26"," 1.4e-02"," 4.8e-03"," 9.1e-23"," 2.3e-03"," 5.5e-06"," 4.8e-03"," 4.4e-02"," 2.5e-02"," 8.9e-03"," 5.8e-04"," 2.9e-03"," 1.4e-05"," 6.3e-03"," 1.7e-02"," 6.8e-03"," 8.3e-12"," 6.9e-08"," 1.4e-03"," 3.3e-06"," 2.4e-03"," 2.6e-11"," 4.2e-02"," 3.5e-02"," 3.7e-02"," 2.9e-36"," 2.0e-12"," 3.7e-02"," 4.7e-04"," 8.0e-03"," 2.4e-02"," 2.0e-02"," 2.8e-02"," 3.2e-03"," 1.5e-12"," 1.9e-04"," 4.2e-07"," 4.6e-57"," 9.8e-17"," 8.6e-04"," 6.9e-04"," 5.3e-11"," 3.2e-02"," 2.3e-03"," 6.6e-31"," 4.0e-02"," 1.7e-03"," 1.0e-02"," 2.3e-04"," 2.5e-04"," 3.1e-03"," 3.0e-02"," 4.8e-04"," 2.1e-74"," 5.5e-03"," 1.2e-03"," 3.1e-09"," 4.1e-07"," 4.1e-02"," 3.4e-03"," 2.1e-04"," 4.0e-29"," 2.5e-02"," 5.1e-06"," 2.0e-07"," 4.1e-03"," 2.9e-02"," 2.5e-02"," 3.1e-03"," 2.4e-10"," 1.0e-02"," 2.5e-03"," 1.1e-07"," 6.8e-03"," 6.8e-05"," 9.6e-04"," 1.7e-02"," 1.1e-02"," 1.6e-02"," 9.0e-03"," 5.2e-03"," 3.4e-04"," 2.5e-09"," 3.7e-09"," 2.3e-11"," 5.8e-03"," 2.5e-02"," 1.4e-02"," 1.8e-06"," 1.2e-04"," 2.2e-03"," 1.6e-03"," 2.1e-05"," 1.9e-02"," 9.1e-14"," 2.3e-02"," 3.9e-07"," 3.6e-02"," 1.5e-02"," 1.2e-02"," 3.1e-02"," 4.9e-03"," 1.4e-02"," 2.1e-02"," 1.4e-02"," 2.1e-08"," 3.6e-02"," 1.6e-04"," 4.0e-03"," 3.1e-04"," 5.6e-05"," 1.6e-03"," 1.9e-04"," 1.2e-05"," 2.9e-12"," 1.3e-03"," 1.1e-04"," 2.0e-02"," 2.1e-02"," 6.7e-03"," 3.4e-02"," 6.3e-07"," 5.4e-04"," 1.3e-02"," 9.6e-04"," 7.5e-03"," 1.2e-06"," 4.9e-15"," 3.6e-02"," 6.0e-13"," 1.9e-02"," 7.9e-03"," 1.3e-02"," 3.4e-02"," 6.9e-16"," 1.6e-02"," 1.6e-03"," 3.9e-07"," 2.3e-15"," 2.5e-03"," 1.5e-17"," 3.2e-02"," 1.3e-02"," 8.4e-06"," 2.1e-02"," 4.8e-02"," 2.4e-03"," 9.4e-09"," 6.5e-11"," 1.8e-02"," 3.7e-05"," 4.8e-07"," 2.3e-07"," 4.4e-03"," 2.5e-03"," 5.4e-03"," 2.3e-06"," 4.1e-21"," 1.8e-02"," 3.2e-05"," 3.7e-05"," 1.2e-02"," 5.5e-08"," 2.8e-02"," 8.2e-04"," 4.8e-03"," 1.9e-02"," 2.0e-02"," 1.2e-02"," 3.6e-03"," 1.5e-02"," 1.1e-02"," 4.6e-02"," 9.5e-15"," 5.0e-13"," 1.1e-05"," 2.8e-03"," 1.7e-03"," 7.8e-03"," 4.4e-07"," 1.5e-07"," 3.4e-02"," 9.0e-09"," 2.0e-07"," 3.4e-06"," 2.1e-02"," 1.2e-08"," 1.0e-02"," 2.4e-12"," 2.7e-03"," 1.8e-02"," 3.4e-02"," 3.1e-02"," 9.4e-04"," 3.5e-05"," 5.4e-03"," 6.9e-04"," 4.4e-10"," 4.2e-04"," 2.4e-33"," 1.5e-09"," 5.1e-06"," 6.8e-04"," 9.3e-06"," 8.7e-03"," 6.7e-04"," 2.3e-02"," 2.3e-02"," 9.0e-03"," 1.3e-07"," 2.4e-05"," 1.2e-20"," 2.0e-10","4.1e-161"," 1.7e-03"," 1.2e-02"," 9.4e-03"," 3.9e-16"," 6.9e-04"," 1.7e-02"," 1.1e-30"," 1.0e-08"," 5.8e-03"," 7.4e-13"," 1.1e-05"," 1.5e-02"," 7.8e-04"," 4.6e-03"," 3.6e-08"," 3.9e-04"," 1.1e-05"," 5.7e-10"," 6.7e-03"," 2.4e-04"," 3.7e-02"," 8.2e-06"," 3.3e-02"," 3.1e-02"," 5.1e-03"," 7.6e-03"," 2.7e-03"," 2.2e-02"," 2.0e-02"," 5.0e-02"," 9.1e-08"," 1.7e-68"," 1.2e-02"," 5.9e-03"," 2.2e-07"," 4.2e-02"," 6.0e-36"," 1.7e-18"," 1.5e-15"," 7.9e-06"," 1.7e-02"," 2.8e-02"," 2.1e-02"," 5.7e-09"," 3.9e-07"," 1.9e-02"," 1.4e-05"," 8.7e-04"," 7.2e-27"," 4.1e-04"," 2.7e-03"," 4.2e-02"," 3.5e-03"," 2.1e-02"," 1.6e-03"," 4.8e-02"," 2.2e-03"," 6.1e-03"," 3.6e-03"," 3.0e-04"," 3.8e-02"," 2.5e-02"," 2.5e-06"," 6.9e-06"," 3.1e-06"," 6.1e-05"," 7.7e-03"," 3.4e-02"," 3.4e-02"," 4.3e-04"," 4.6e-02"," 5.5e-08"," 4.8e-04"," 3.6e-02"," 3.3e-19"," 2.0e-02"," 1.6e-03"," 7.1e-04"," 1.2e-02"," 2.1e-02"," 7.9e-03"," 4.6e-12"," 1.2e-03"," 1.2e-07"," 2.0e-02"," 1.1e-36"," 2.4e-03"," 2.3e-04"," 5.4e-03"," 2.7e-03"," 1.3e-02"," 2.2e-14"," 3.0e-02"," 2.0e-03"," 7.9e-06"," 2.9e-03"," 1.0e-09"," 6.0e-11"," 1.3e-02"," 2.5e-03"," 8.3e-03"," 8.2e-06"," 4.5e-02"," 2.2e-03"," 3.4e-03"," 9.9e-15"," 4.4e-05"," 4.5e-03"," 2.3e-02"," 1.0e-07"," 9.9e-03"," 3.0e-02"," 4.1e-03"," 4.2e-26"," 3.1e-09"," 2.6e-06"," 1.7e-02"," 1.9e-09"," 1.7e-04"," 7.2e-07"," 2.6e-04"," 1.6e-02"," 1.1e-03"," 1.2e-03"," 2.1e-02"," 3.2e-02"," 8.1e-03"," 2.3e-10"," 4.8e-02"," 4.6e-02"," 1.9e-02"," 7.1e-09"," 2.9e-02"," 3.2e-03"," 1.2e-02"," 1.9e-02"," 2.7e-03"," 7.4e-03"," 2.7e-02"," 4.1e-10"," 6.0e-05"," 2.4e-14"," 5.5e-22"," 3.6e-05"," 1.4e-03"," 2.1e-02"," 1.5e-03"," 9.5e-21"," 3.8e-02"," 9.7e-06"," 5.4e-04"," 1.1e-02"," 2.4e-02"," 3.5e-04"," 1.2e-02"," 2.6e-04"," 2.3e-02"," 1.8e-02"," 3.4e-05"," 1.4e-02"," 9.0e-03"," 1.5e-03"," 4.2e-02"," 1.6e-02"," 1.3e-05"," 1.2e-11"," 2.9e-05"," 3.4e-02"," 4.9e-02"," 3.7e-03"," 1.4e-02"," 1.6e-03"," 1.2e-02"," 2.3e-05"," 3.6e-02"," 7.4e-06"," 1.9e-03"," 2.0e-03"," 1.7e-03"," 8.5e-03"," 1.6e-06"," 5.8e-03"," 4.7e-04"," 6.5e-09"," 9.0e-03"," 2.0e-03"," 6.6e-05"," 9.5e-04"," 1.7e-16"," 8.8e-03"," 4.7e-04"," 5.0e-02"," 2.4e-04"," 1.6e-02"," 1.1e-05"," 1.6e-02"," 1.2e-02"," 7.5e-05"," 1.0e-02"," 1.8e-06"," 4.4e-02"," 3.3e-03"," 1.2e-08"," 2.9e-03"," 1.3e-05"," 3.4e-13"," 4.4e-02"," 8.0e-15"," 5.4e-04"," 1.2e-03"," 3.4e-04"," 5.2e-04"," 9.6e-21"," 3.7e-12"," 9.6e-04"]},"countsData":{"treated1":[34268.068838497,7989.85019236151,594.286377944245,50.1352705673128,698.225353510625,546.596730331435,2016.41612598778,476.285070389472,432.263857208417,1702.15357633413,357.672357096073,55225.834747111,105.773192782258,1182.45869850223,2821.02607801929,86.2082091462331,32379.436511882,799.718706122502,271.46414794984,908.548927597889,124.115364941031,618.742607489276,162.022520735828,4719.44089645229,8581.69094735126,121.669741986527,744.692189646183,4278.61735890311,26437.7955439168,1565.19869088196,1519.34326048503,320.988012778527,3686.77660391337,690.27707890849,920.165636631778,582.05826317173,1942.43603161406,9731.1337359677,1792.64162565075,9140.51579245521,930.559534188416,3.6684344317546,912.217362029643,28629.0737111515,1120.70671890103,58.6949509080736,24.4562295450307,21.3992008519018,990.477296573741,40.3527787493006,1128.04358776454,40.3527787493006,1953.44133490932,158.965492042699,2377.14551177698,1778.57929366235,5834.03355796706,1705.82201076589,700.059570726502,783.822156918233,4.27984017038036,65.420414032957,62.3633853398282,484.233344991607,1584.15226877936,4111.09218651965,1054.06349339082,2310.50228626677,1620.22520735828,3650.70366533445,38337.5854347901,394.968107152245,6362.28811613972,12290.4781578552,101.493352611877,739.800943737177,945.233271915435,641.364619818429,1783.47053957136,4205.24867026802,3312.5962918744,2120.96650729278,2158.26225734896,308.759898006012,97.2135124414968,1363.43479713546,29.3474754540368,129.006610850037,333.216127551043,20354.3084445904,1904.52887581926,166.302360906208,730.629857657791,374.791717777595,124.726770679656,1373.8286946921,349.724082493938,34.2387213630429,10697.766208735,1823.21191258204,3887.31768618262,517.860660616024,420.647148174527,892.652378393619,1661.80079758483,5408.49516388353,347.278459539435,1146.99716566194,252.510570052441,3701.45034164039,322.210824255779,2235.91078615443,225.608717552908,379.071557947975,493.404431070993,594.286377944245,765.47998475946,698.836759249251,1965.66944968184,147.960188747435,2925.57645932429,8806.07685342691,783.822156918233,6230.22447659656,1431.30083412292,12168.19701013,2129.52618763354,388.242644027362,18553.1071385989,3593.23152590363,212.769197041767,2453.5712291052,3193.37217284238,5281.32277024937,5319.84133178279,1139.66029679843,795.438865952122,1613.4997442334,2808.18655750814,255.56759874557,106.996004259509,2124.63494172454,287.972102892736,130.229422327288,1328.58467003379,1911.86574468277,645.033054250183,547.819541808687,35006.0355650183,48.3010533514355,808.889792201889,311.816926699141,3202.54325892176,58.0835451694478,1069.34863685647,834.568833224171,22.0106065905276,2536.11100381968,262.90446760908,8400.71484871803,8495.48273820502,250.064947097938,1890.46654383087,929.948128449791,2317.22774939165,700.670976465128,822.340718451656,509.912386013889,330.77050459654,8.55968034076073,292.251943063116,1836.6628388318,1527.29153508716,89.2652378393619,1487.55016207649,305.091463574257,2.44562295450307,28.1246639767853,668.877878056588,22.0106065905276,717.79033714665,1502.22389980351,34.2387213630429,162.633926474454,2559.34442188746,539.871267206552,15.8965492042699,2541.00224972869,11647.8907265595,2358.19193387958,6727.90874783793,4045.6717724867,500.129894195877,72.1458771578404,5165.15567991047,1160.4480919117,536.814238513423,13798.8161150449,645.644459988809,1036.9441327093,1302.29422327288,67.8660369874601,256.790410222822,9054.30758330897,678.660369874601,2258.53279848358,2512.26618001327,10.393897556638,852.299599644318,1792.03021991212,84.3739919303558,648.090082943312,2614.37093836378,673.769123965595,1466.76236696321,1037.55553844793,729.407046180539,331.381910335165,4693.76185543001,475.673664650846,503.798328627631,350.94689397119,3269.18648443197,929.948128449791,690.888484647116,1693.59389599337,4309.1876458344,3222.10824255779,64.1976025557055,123.503959202405,311.816926699141,52.5808935218159,116.778496077521,15124.9551621242,5714.19803319641,198.706865053374,424.315582606282,86.2082091462331,539.871267206552,464.056955616957,792.993242997619,4.89124590900613,841.294296349055,2594.80595472775,17.7307664201472,6578.72574761325,2904.78866421102,1318.80217821578,1079.13112867448,1253.38176418282,426.149799822159,792.993242997619,995.368542482748,697.002542033374,3743.02593186694,150.405811701939,171.193606815215,2852.81917642783,895.709407086748,24.4562295450307,33.6273156244172,116.167090338896,509.912386013889,1306.57406344326,629.136505045914,2353.9120937092,605.903086978134,77.6485288054723,1527.29153508716,1382.38837503286,167.52517238346,4778.13584736036,1164.72793208208,637.084779648049,3711.84423919703,333.216127551043,6837.96178079057,198.706865053374,245.785106927558,73.368688635092,311.816926699141,2.44562295450307,674.991935442846,4616.72473236316,2581.35502847799,391.29967272049,114.944278861644,95.3792952256195,20.1763893746503,234.168397893668,249.453541359313,717.79033714665,58.6949509080736,1455.75706366795,766.702796236711,1816.48644945715,753.251869986944,368.066254652711,307.53708652876,2525.71710626304,1437.41489150918,824.786341406159,258.624627438699,66.6432255102085,1488.16156781512,1743.72916656069,194.427024882994,2476.19324143435,2051.26625308945,936.062185836048,150.405811701939,1098.08470657188,327.713475903411,1337.14435037455,589.395132035239,677.437558397349,20.7877951132761,1176.34464111597,1139.0488910598,232.334180677791,176.696258462846,168.136578122086,22.6220123291534,973.35793589222,61.7519796012024,419.424336697276,38.5185615334233,1220.97726003566,1095.63908361737,1395.83930128262,1812.8180150254,151.62862317919,572.887177092343,3179.92124659261,706.785033851386,658.48398049995,369.289066129963,358.283762834699,95.9907009642453,1647.12705985781,611.405738625766,3202.54325892176,2987.93984466412,201.152488007877,5928.19004171543,5146.20210201308,655.426951806822,2676.12291796498,1260.1072273077,196.261242098871,394.968107152245,155.90846334957,936.673591574674,188.312967496736,239.059643802675,39.7413730106748,30.5702869312883,674.991935442846,3247.78728358007,95.9907009642453,91.0994550552392,401.082164538503,180.976098633227,737.9667265213,81.3169632372269,325.267852948908,2032.31267519205,2064.10577360059,191.981401928491,20.1763893746503,105.161787043632,410.253250617889,3247.17587784145,305.091463574257,810.724009417766,4414.34943287803,1585.37508025661,58.6949509080736,256.790410222822,1996.23973661313,491.570213855116,213.380602780392,415.144496526895,313.651143915018,1058.3433335612,262.90446760908,1920.42542502353,91.710860793865,17.7307664201472,61.7519796012024,741.635160953055,210.323574087264,79.4827460213496,37.2957500561717,66.6432255102085,18900.3855981383,91.710860793865,869.41896032584,228.665746246037,48.3010533514355,607.737304194012,62.3633853398282,4236.43036293793,28.736069715411,44.6326189196809,1520.56607196228,35.4615328402944,3519.86283726854,588.783726296613,228.054340507411,143.068942838429,85.5968034076073,1270.50112486434,70.3116599419631,4231.53911702893,41.5755902265521,2757.43988120221,504.409734366257,7067.85033851386,281.858045506478,1670.97188366422,168.136578122086,40.3527787493006,844.962730780809,627.913693568662,103.327569827755,29.3474754540368,607.125898455386,451.217435105816,345.444242323558,552.099381979067,604.680275500883,47.078241874184,98.4363239187484,4120.87467833767,4657.68891685109,117.389901816147,3011.78466847053,177.307664201472,1084.63378032211,1339.58997332905,15.8965492042699,147.960188747435,926.891099756662,111.887250168515,1979.73178167023,372.346094823092,374.180312038969,733.075480612294,7.3368688635092,1054.67489912945,342.387213630429,717.178931408024,28.736069715411,9422.98524370031,590.006537773865,19.5649836360245,219.49466016665,4487.71812151312,442.046349026429,356.449545618822,0.611405738625766,133.897856759043,1002.70541134626,6848.35567834721,207.877951132761,42.1869959651779,1950.38430621619,66.0318197715828,149.794405963313,547.819541808687,132.675045281791,9166.80623921612,3450.77398880383,130.229422327288,4699.26450707764,643.198837034306,352.169705448441,42.1869959651779,1293.73454293212,426.761205560785,800.330111861128,38.5185615334233,647.478677204687,160.799709258577,32.4045041471656,507.466763059386,1349.37246514707,293.474754540368,215.21481999627,3319.93316073791,94.156483748368,26.290446760908,313.651143915018,618.742607489276,281.246639767853,932.393751404294,33.6273156244172,95.9907009642453,770.982636407091,813.781038110895,1512.61779736015,689.054267431239,5.5026516476319,1192.24119032024,1028.38445236854,82.5397747144785,39.129967272049,1150.05419435507,27.5132582381595,429.206828515288,20.7877951132761,1887.40951513774,2264.64685586984,788.713402827239,1454.5342521907,122.281147725153,945.844677654061,931.170939927042,686.608644476736,1475.9334530426,767.314201975337,624.856664875533,1880.07264627423,1955.88695786383,45.2440246583067,893.263784132245,88.0424263621103,292.863348801742,5258.70075792022,615.074173057521,394.356701413619,1879.46124053561,7383.94710538338,4014.49007981678,1419.0727193504,15.2851434656442,202.375299485129,1938.15619144368,374.791717777595,405.973410447509,215.21481999627,488.513185161987,514.19222618427,119.224119032024,1047.33803026594,413.310279311018,57.472139430822,2591.137520296,717.79033714665,171.193606815215,569.218742660588,259.236033177325,4.89124590900613,502.57551715038,2357.58052814095,162.633926474454,334.438939028294,1101.14173526501,5317.39570882829,437.155103117423,729.407046180539,5251.97529479533,102.104758350503,8.55968034076073,107.607409998135,41.5755902265521,574.72139430822,914.662984984146,273.298365165718,555.767816410822,2246.30468371107,520.306283570527,97.2135124414968,1565.81009662059,306.314275051509,387.631238288736,833.34602174692,289.806320108613,652.981328852318,96.6021067028711,610.182927148515,599.789029591877,352.781111187067,757.531710157324,191.369996189865,1368.32604304446,398.636541584,37.2957500561717,1244.21067810343,103.327569827755,5.5026516476319,675.603341181472,36.684344317546,778.319505270601,3691.05644408375,512.358008968392,3102.27271778714,46.4668361355582,91.710860793865,734.909697828171,5992.38764427114,1886.79810939911,14.6737377270184,253.733381529693,150.405811701939,95.3792952256195,9.78249181801226,393.745295674994,1200.80087066101,338.718779198675,1258.88441583045,133.897856759043,972.135124414968,252.510570052441,87.4310206234846,167.52517238346,814.392443849521,451.217435105816,344.221430846306,2183.32989263261,53.8037049990674,774.651070838846,26.290446760908,5.5026516476319,195.649836360245,192.592807667116,278.801016813349,677.437558397349,42.7984017038036,16.5079549428957,3866.52989106935,1436.80348577055,313.651143915018,839.460079133177,829.677587315165,910.994550552392,910.383144813766,4848.44750730233,240.893861018552,94.7678894869938,405.973410447509,122.281147725153,1649.57268281232,77.0371230668466,2529.99694643342,2300.10838871013,31.1816926699141,1312.68812082952,100.270541134626,752.640464248318,1815.2636379799,1622.67083031278,1659.96658036896,22.0106065905276,2279.32059359686,36.0729385789202,190.758590451239,788.713402827239,20.1763893746503,462.222738401079,21.3992008519018,824.174935667533,341.775807891803,726.35001748741,4089.69298566775,519.083472093276,512.969414707018,1426.40958821391,543.539701638306,871.864583280343,137.566291190797,187.090156019485,918.331419415901,2467.02215535497,100.270541134626,3128.56316454805,39412.4367232942,89.2652378393619,7599.77333111828,132.063639543166,721.458771578404,2433.39483973055,902.434870211631,438.9893203333,68.4774427260858,674.38052970422,607.125898455386,12886.5987530153,86.2082091462331,18.9535778973988,1083.41096884486,882.869886575607,11153.2634840112,212.769197041767,1337.75575611318,17.7307664201472,1171.45339520697,2051.87765882807,1437.41489150918,885.31550953011,1090.74783770837,2001.13098252213,7.94827460213496,608.960115671263,26.290446760908,534.980021297546,95.9907009642453,96.6021067028711,575.332800046846,51.9694877831901,99.6591353959999,256.790410222822,394.356701413619,28.1246639767853,266.572902040834,130.840828065914,223.77450033703,38.5185615334233,6932.11826453894,21.3992008519018,1216.69741986527,1739.44932639031,5734.37442257106,541.705484422429,1659.35517463033,11345.2448859397,1723.55277718604,876.144423450723,128.395205111411,86.2082091462331,3876.92378862598,17.7307664201472,128.395205111411,2133.80602780392,179.753287155975,118.001307554773,552.710787717693,1613.4997442334,479.953504821227,35.4615328402944,505.021140104883,1107.86719838989,73.9800943737177,769.75982492984,1458.20268662245,7899.97354878353,335.05034476692,58.6949509080736,111.275844429889,250.064947097938,374.180312038969,95.9907009642453,82.5397747144785,1538.29683838243,245.785106927558,337.495967721423,661.541009193079,26.290446760908,1697.87373616375,102.104758350503,498.29567698,79.4827460213496,282.469451245104,3134.06581619568,2679.79135239673,51.3580820445644,9.17108607938649,1183.07010424086,787.490591349987,410.253250617889,214.603414257644,364.397820220957,20.7877951132761,1127.43218202591,29.9588811926626,162.633926474454,5.5026516476319,1841.55408474081,4242.54442032419,316.096766869521,413.310279311018,32.4045041471656,4408.8467812304,748.972029816564,3994.31369044213,5211.01111030741,1058.95473929983,2485.36432751374,3772.9848130596,1353.04089957882,7280.008129817,163.24533221308,566.16171396746,1380.55415781698,127.172393634159,204.820922439632,1894.13497826262,923.222665324907,134.509262497669,1309.63109213639,113.110061645767,2338.62695024356,721.458771578404,325.879258687533,40.9641844879263,2708.52742211214,484.233344991607,2630.26748756805,7851.67249543209,372.346094823092,374.791717777595,79.4827460213496,260.458844654576,298.366000449374,59.3063566466993,882.869886575607,55.6379222149447,139.400508406675,44.6326189196809,1815.87504371853,1783.47053957136,3969.8574608971,135.73207397492,834.568833224171,2139.30867945156,2830.19716409867,421.258553913153,893.263784132245,325.879258687533,108.218815736761,437.155103117423,1084.02237458348,2699.96774177138,1132.32342793492,84.9853976689815,396.190918629497,8903.90177160704,835.180238962797,1482.04751042886,10.393897556638,481.787722037104,2588.08049160287,1140.88310827568,2282.37762228999],"treated2":[41274.4618518115,9117.66142749829,672.560531750342,112.96915181744,1229.52472210609,534.633078949979,1871.87257371921,517.556346698506,417.723142766814,1856.10943625632,384.883273052442,73806.9503856572,115.59634139459,1408.17361335228,2941.13873161917,84.0700664687928,33454.6320754252,705.400401464715,279.795689966451,1141.51387127158,137.927452800363,824.937527225029,155.004185051837,4852.41914899563,11479.5048573559,170.767322514735,868.286155248001,6155.50517926192,33714.7238435631,1111.30119113435,1651.18864923863,243.015035886354,3752.94031095845,736.926676390512,878.7949135566,626.584714150221,2233.11114057731,10127.8158199124,2210.78002917154,9673.31202306547,951.042626928219,5.25437915429955,861.718181305126,27871.854223982,1270.24616055192,73.5613081601937,22.3311114057731,19.7039218286233,839.387069899353,30.2126801372224,1134.9458973287,31.5262749257973,1888.94930597069,165.512943360436,2998.93690231647,1941.49309751368,6729.54610186915,1652.50224402721,652.856609921719,798.665631453532,9.19516352002421,91.9516352002421,60.4253602744448,543.828242470003,1552.66904009552,5270.14229176245,994.39125495119,2331.63074972043,1575.00015150129,2959.52905865922,54311.8901284173,575.354517395801,8879.90077076624,10471.977654519,103.773988297416,952.356221716793,1155.9634139459,551.709811201453,1992.7232942681,3077.75258963096,3295.80932453439,2677.10617911562,2139.84591058849,279.795689966451,89.3244456230924,1523.76995474687,36.7806540800969,124.791504914614,324.457912777997,27685.3237640043,1975.64656201663,235.133467154905,777.648114836333,338.907455452321,144.495426743238,1295.20446153484,449.249417692612,34.1534645029471,10456.2145170561,1544.78747136407,4436.0096010174,413.78235840109,300.813206583649,987.823281008315,1270.24616055192,5825.79288732963,325.771507566572,1264.99178139762,285.050069120751,4617.28568184073,211.488760960557,1980.90094117093,181.276080823334,317.889938835123,319.203533623698,574.040922607226,764.512166950585,584.549680915825,2216.03440832584,158.944969417561,3065.93023653379,11642.3906111392,725.104323293338,6927.89891494396,1607.84002121566,11164.242108098,2072.85257637117,458.444581212636,22159.0304884698,3101.39729582531,253.523794194953,2273.83257902313,4449.14554890314,5228.10725852805,4219.26646090254,1188.80328366027,710.654780619014,2109.63323045127,3139.49154469398,245.642225463504,85.3836612573677,2137.21872101134,307.381180526524,112.96915181744,1204.56642112317,1569.74577234699,708.027591041864,504.420398812757,52320.4804289378,64.3661446401695,776.334520047759,340.221050240896,2996.30971273932,64.3661446401695,1209.82080027747,792.097657510657,13.1359478857489,2583.8409491268,311.321964892248,7202.44022575611,6992.26505958413,236.44706194348,2318.49480183468,968.119359179692,2669.22461038417,1023.29034029984,855.150207362252,496.538830081307,487.343666561283,24.9583009829229,319.203533623698,2318.49480183468,1544.78747136407,109.028367451716,1827.21035090767,277.168500389301,6.56797394287444,27.5854905600726,667.306152596043,22.3311114057731,852.523017785102,1740.51309486173,49.9166019658457,203.607192229108,3127.66919159681,489.970856138433,27.5854905600726,2972.66500654497,12919.204745634,3130.29638117396,7999.79226242107,3776.5850171528,613.448766264473,51.2301967544206,5807.40256028958,1127.06432859725,672.560531750342,13378.9629216352,672.560531750342,796.038441876382,1451.52224137525,77.5020925259184,214.115950537707,14700.4392789416,633.152688093096,2486.63493477226,3134.23716553968,14.4495426743238,930.02511031102,1681.40132937586,107.714772663141,604.253602744448,2839.99193289891,859.090991727976,1888.94930597069,1153.33622436875,970.746548756842,383.569678263867,6101.64779293035,587.176870492975,542.514647681429,298.186017006499,4429.44162707452,903.753214539523,471.580529098385,1929.67074441651,4924.66686236725,3968.36985628474,57.7981706972951,90.6380404116672,227.251898423456,42.0350332343964,114.282746606015,18622.8333176262,7345.62205771077,228.56549321203,365.179351223819,72.2477133716188,849.895828207952,592.431249647274,830.191906379329,5.25437915429955,1048.24864128276,2317.1812070461,24.9583009829229,6349.91720797101,3615.01285815809,1087.65648494001,1312.28119378631,1278.12772928337,512.301967544206,683.069290058942,1035.11269339701,819.68314807073,3262.96945482002,126.105099703189,153.690590263262,3303.69089326584,960.237790448243,13.1359478857489,55.1709811201453,105.087583085991,625.271119361646,1219.0159637975,667.306152596043,2842.61912247606,501.793209235607,91.9516352002421,2134.59153143419,1505.37962770682,149.749805897537,6004.44177857581,1179.60812014025,750.062624276261,3864.59586798732,394.078436572466,6881.92309734384,244.328630674929,181.276080823334,74.8749029487686,303.440396160799,1.31359478857489,965.492169602542,5401.50177061994,3034.40396160799,529.37869979568,115.59634139459,115.59634139459,30.2126801372224,190.471244343359,370.433730378118,780.275304413483,57.7981706972951,1856.10943625632,522.810725852805,2431.46395365212,1083.71570057428,466.326149944085,274.541310812151,3637.34396956386,1021.97674551126,822.31033764788,232.506277577755,53.8573863315704,2382.86094647485,1632.79832219859,145.809021531813,2851.81428599608,2468.24460773221,1178.29452535167,200.980002651958,1174.35374098595,400.646410515341,1473.85335278102,637.09347245882,730.358702447637,17.0767322514735,1279.44132407194,1103.41962240291,295.55882742935,189.157649554784,116.909936183165,14.4495426743238,1124.4371390201,52.5437915429955,336.280265875171,36.7806540800969,1178.29452535167,1021.97674551126,1510.63400686112,2263.32382071453,200.980002651958,570.100138241501,3085.63415836241,838.073475110778,721.163538927613,287.6772586979,315.262749257973,91.9516352002421,1607.84002121566,508.361183178481,3340.47154734594,2976.6057909107,219.370329692006,5974.22909843859,5660.27994396919,738.240271179087,2297.47728521748,1183.54890450597,277.168500389301,239.07425152063,148.436211108962,1035.11269339701,164.199348571861,204.920787017682,76.1884977373435,45.9758176001211,772.393735682034,2992.36892837359,60.4253602744448,76.1884977373435,501.793209235607,144.495426743238,784.216088779208,66.9933342173193,315.262749257973,1766.78499063322,2386.80173084057,144.495426743238,17.0767322514735,101.146798720266,408.52797924679,2583.8409491268,258.778173349253,810.487984550706,3100.08370103673,1477.79413714675,66.9933342173193,306.067585737949,1948.06107145656,563.532164298627,195.725623497658,321.830723200847,327.085102355147,1099.47883803718,295.55882742935,1691.91008768446,120.85072054889,27.5854905600726,65.6797394287444,705.400401464715,285.050069120751,98.5196091431166,51.2301967544206,55.1709811201453,29277.4006477571,93.265229988817,923.457136368146,199.666407863383,48.6030071772708,643.661446401695,57.7981706972951,4290.20057948558,21.0175166171982,48.6030071772708,1523.76995474687,32.8398697143722,3815.99286081005,463.698960366935,220.683924480581,140.554642377513,82.7564716802179,1065.32537353423,82.7564716802179,4546.35156325769,22.3311114057731,3272.16461834004,447.935822904037,8057.59043311836,269.286931657852,1881.06773723924,219.370329692006,39.4078436572466,885.362887499474,577.981706972951,91.9516352002421,31.5262749257973,700.146022310415,507.047588389907,281.109284755026,597.685628801574,587.176870492975,36.7806540800969,107.714772663141,3850.146325313,4823.52006364699,77.5020925259184,2804.52487360738,236.44706194348,1127.06432859725,1326.73073646064,11.822353097174,130.045884068914,912.948378059547,105.087583085991,2313.24042268038,320.517128412273,367.806540800968,637.09347245882,1.31359478857489,1083.71570057428,304.753990949374,782.902493990633,35.467059291522,10628.2954343594,629.211903727371,17.0767322514735,275.854905600726,5618.24491073479,404.587194881065,359.924972069519,2.62718957714978,127.418694491764,1155.9634139459,7161.71878731029,207.547976594832,44.6622228115462,1871.87257371921,80.1292821030681,177.33529645761,488.657261349858,137.927452800363,12814.117162548,3122.41481244251,111.655557028865,4133.88279964517,631.839093304521,530.692294584255,31.5262749257973,1413.42799250658,597.685628801574,873.5405344023,40.7214384458215,591.117654858699,174.70810688046,39.4078436572466,521.49713106423,1334.61230519209,348.102618972345,158.944969417561,3482.33978451203,90.6380404116672,28.8990853486475,353.356998126645,629.211903727371,348.102618972345,1025.91752987699,32.8398697143722,111.655557028865,756.630598219135,776.334520047759,1489.61649024392,740.867460756237,1.31359478857489,1501.4388433411,1149.39544000303,61.7389550630197,48.6030071772708,1039.05347776274,15.7631374628987,399.332815726766,17.0767322514735,1698.47806162733,2121.45558354844,547.769026835728,1452.83583616383,136.613858011788,903.753214539523,1040.36707255131,880.108508345175,1213.7615846432,932.65229988817,588.49046528155,2832.11036416746,1716.86838866738,18.3903270400484,1162.53138788878,61.7389550630197,282.422879543601,6218.55772911352,614.762361053047,508.361183178481,1940.17950272511,6860.90558072664,4351.9395345486,1477.79413714675,26.2718957714977,153.690590263262,2368.41140380052,399.332815726766,342.848239818046,195.725623497658,409.841574035365,429.545495863988,106.401177874566,1039.05347776274,337.593860663746,39.4078436572466,2459.04944421219,718.536349350464,183.903270400484,591.117654858699,199.666407863383,6.56797394287444,510.988372755631,1934.92512357081,115.59634139459,353.356998126645,1083.71570057428,3876.41822108449,475.521313464109,778.961709624908,7283.88310264775,93.265229988817,6.56797394287444,110.341962240291,73.5613081601937,530.692294584255,932.65229988817,307.381180526524,633.152688093096,2309.29963831465,441.367848961162,73.5613081601937,1582.88172023274,355.984187703795,449.249417692612,869.599750036576,248.269415040654,778.961709624908,98.5196091431166,689.637264001816,508.361183178481,468.953339521235,912.948378059547,156.317779840412,1506.6932224954,457.130986424061,39.4078436572466,1387.15609673508,107.714772663141,3.94078436572466,933.965894676745,53.8573863315704,831.505501167904,4442.57757496027,641.034256824545,3588.74096238659,42.0350332343964,97.2060143545417,771.080140893459,4847.16476984134,1705.0460355702,18.3903270400484,207.547976594832,94.5788247773919,123.477910126039,13.1359478857489,269.286931657852,1360.88420096358,295.55882742935,1312.28119378631,157.631374628987,943.161058196769,218.056734903431,73.5613081601937,174.70810688046,622.643929784497,478.148503041259,384.883273052442,2573.3321908182,59.1117654858699,935.27948946532,11.822353097174,5.25437915429955,186.530459977634,176.021701669035,228.56549321203,581.922491338675,49.9166019658457,40.7214384458215,3919.76684910746,1167.78576704308,311.321964892248,973.373738333992,861.718181305126,910.321188482397,1362.19779575216,4228.46162442256,300.813206583649,91.9516352002421,390.137652206742,135.300263223213,1728.69074176455,65.6797394287444,2064.97100763972,2553.62826898958,30.2126801372224,1186.17609408312,119.537125760315,863.031776093701,1765.47139584465,1456.77662052955,2096.49728256552,15.7631374628987,2675.79258432705,27.5854905600726,218.056734903431,815.742363705005,19.7039218286233,341.534645029471,18.3903270400484,734.299486813362,306.067585737949,629.211903727371,4123.37404133657,542.514647681429,299.499611795074,1467.28537883815,602.940007955873,823.623932436455,94.5788247773919,187.844054766209,952.356221716793,3104.02448540246,141.868237166088,3649.16632266104,24365.8697332756,66.9933342173193,7421.81055544811,112.96915181744,593.744844435849,3314.19965157444,989.13687579689,384.883273052442,52.5437915429955,626.584714150221,589.804060070124,18027.7748784018,74.8749029487686,18.3903270400484,1215.07517943177,555.650595567177,10906.7775295373,155.004185051837,1677.46054501013,17.0767322514735,1464.658189261,1653.81583881578,1666.95178670153,1027.23112466556,1050.87583085991,2219.97519269156,7.88156873144933,627.898308938796,39.4078436572466,543.828242470003,91.9516352002421,78.8156873144933,509.674777967056,74.8749029487686,85.3836612573677,246.955820252079,517.556346698506,32.8398697143722,288.990853486475,133.986668434639,219.370329692006,45.9758176001211,8192.89069634157,21.0175166171982,1238.71988562612,1465.97178404957,6007.06896815296,562.218569510052,1722.12276782168,8793.2035147203,1548.72825572979,895.871645808073,147.122616320387,51.2301967544206,2955.5882742935,14.4495426743238,128.732289280339,2352.64826633762,225.938303634881,114.282746606015,634.466282881671,1820.64237696479,327.085102355147,36.7806540800969,367.806540800968,1246.60145435757,47.289412388696,856.463802150827,1982.21453595951,9326.5229988817,204.920787017682,72.2477133716188,95.8924195659668,265.346147292127,341.534645029471,137.927452800363,78.8156873144933,2064.97100763972,244.328630674929,433.486280229713,411.15516882394,23.644706194348,1379.27452800363,68.3069290058941,508.361183178481,81.442876891643,350.729808549495,3892.18135854739,2723.08199671574,51.2301967544206,6.56797394287444,1212.44798985462,727.731512870488,355.984187703795,145.809021531813,342.848239818046,26.2718957714977,1257.11021266617,18.3903270400484,185.216865189059,3.94078436572466,2528.66996800666,4122.060446548,277.168500389301,472.89412388696,51.2301967544206,5151.91876079071,822.31033764788,5984.73785674719,5752.23157916943,1308.34040942059,2922.74840457912,4990.346601796,1489.61649024392,7448.08245121961,212.802355749132,467.63974473266,1705.0460355702,160.258564206136,185.216865189059,1582.88172023274,1073.20694226568,106.401177874566,1557.92341924982,112.96915181744,2813.72003712741,537.260268527129,374.374514743843,55.1709811201453,3529.62919690072,533.319484161404,3122.41481244251,8887.78233949769,357.297782492369,563.532164298627,70.9341185830439,401.960005303916,341.534645029471,52.5437915429955,1134.9458973287,73.5613081601937,176.021701669035,31.5262749257973,1429.19112996948,1685.34211374158,5136.15562332781,162.885753783286,993.077660162615,2441.97271196072,2361.84342985765,584.549680915825,671.246936961768,223.311114057731,141.868237166088,463.698960366935,1251.85583351187,2318.49480183468,1236.09269604897,86.6972560459426,363.865756435244,10336.6773912958,982.568901854016,1234.77910126039,14.4495426743238,533.319484161404,1753.64904274747,1145.4546556373,2507.65245138946],"treated3":[41246.4916854995,9493.75485598282,713.382717830967,132.107910709438,1055.66230466906,559.657149005439,1770.24600350647,462.377687483034,444.362972386292,1860.31957899018,419.142371250854,62563.9045499771,135.710853728787,1261.03005677191,2667.3788153242,117.696138632045,33363.2523591654,747.010186011551,258.210916386629,981.201482269192,127.303986683641,903.137716849978,123.701043664292,4709.04652628825,11125.8880437476,176.544207948068,802.255312308225,6228.28749944679,33562.615206236,1121.71626002378,1660.95673191957,259.411897393079,3787.89409434153,697.769964747124,1040.04955158521,719.387622863214,2416.37378497627,10907.3095005738,2272.25606420234,9401.27931848621,900.735754837079,8.40686704514607,815.466103379169,25232.6109455027,1178.1623673269,73.2598413934158,15.6127530838427,31.2255061676854,852.696514579102,31.2255061676854,1112.10841197218,31.2255061676854,1817.084262758,177.745188954517,2789.87887798205,2066.88831209948,5984.48835513756,1570.88315643587,722.990565882562,742.206261985753,9.60784805159551,75.6618034063147,67.2549363611686,465.980630502382,1527.64784020369,4754.68380453333,1000.41717837238,2242.2315390411,1504.82920108115,2733.43277067892,54786.3515522105,652.132686502045,9120.24976297704,9801.20599363387,108.08829058045,955.980881133754,1068.87309574,569.264997057034,1921.5696103191,3116.54571173629,3193.40849614906,2703.40824551769,2099.31479927362,323.063890734899,109.289271586899,1492.81939101665,39.6323732128315,108.08829058045,341.078605831641,29097.367824257,2120.93245738971,218.578543173798,756.618034063147,356.691358915483,193.35794203836,1243.01534167517,492.40221264427,31.2255061676854,10091.8433971946,1340.29480319757,4220.24725666333,357.892339921933,278.62759349627,898.33379282418,1253.82417073321,5995.2971841956,325.465852747798,1277.8437908622,300.24525161236,4399.1934266243,200.563828077056,1973.21179359643,200.563828077056,338.676643818742,308.652118657506,505.613003715214,661.740534553641,530.833604850652,2095.71185625427,150.12262580618,2965.22210492367,10448.5347561101,859.902400617798,6959.6849323745,1576.88806146811,10832.8486781739,1984.02062265447,462.377687483034,23205.3550066161,3066.10450946542,251.005030347933,1975.61375560933,4612.9680457723,5123.38497351331,4550.51703343692,1175.760405314,697.769964747124,2056.07948304144,3200.61438218776,218.578543173798,79.264746425663,2173.77562167348,306.250156644607,106.887309574,1264.63299979126,1584.09394750681,706.17683179227,524.828699818405,42906.2474364127,58.8480693160225,703.774869779371,380.710979044472,2942.40346580113,68.455917367618,1169.75550028175,780.637654192135,24.0196201289888,2435.58948107946,264.215821418877,7644.24410605068,7105.00363415488,230.588353238292,2229.02074797016,981.201482269192,2696.20235947899,995.613254346585,898.33379282418,450.36787741854,485.196326605573,22.8186391225393,279.828574502719,2315.49138043452,1400.34385352005,108.08829058045,1772.64796551937,276.225631483371,4.80392402579776,30.024525161236,614.902275302113,33.6274681805843,809.461198346922,1945.58923044809,38.431392206382,206.568733109304,3225.83498332319,420.343352257304,10.808829058045,3052.89371839447,13028.2419579635,3006.05545914295,8468.11707647499,3877.96766982524,654.534648514944,43.2353162321798,6027.72367136973,1104.90252593348,577.67186410218,12667.9476560287,655.735629521394,829.877875456562,1271.83888582996,60.049050322472,218.578543173798,15368.9539395335,656.936610527843,2628.94742311782,2950.81033284627,9.60784805159551,891.127906785484,1635.73613078414,109.289271586899,569.264997057034,3070.90843349122,941.56910905636,1935.9813823965,1131.32410807537,1002.81914038528,386.715884076719,6019.31680432459,498.407117676517,540.441452902248,329.068795767146,4522.89447028859,927.157336978967,371.103130992877,1854.31467395793,4853.16424706218,4349.95320535987,68.455917367618,118.897119638494,224.583448206045,52.8431642837753,121.299081651393,19550.7698039904,7739.12160556019,210.171676128652,324.264871741349,80.4657274321124,883.922020746787,590.882655173124,809.461198346922,7.20588603869663,1098.89762090124,2535.27090461477,22.8186391225393,6509.31705495596,3790.29605635443,1055.66230466906,1237.01043664292,1113.30939297863,580.073826115079,739.804299972855,1101.29958291414,837.083761495259,3275.07520458762,135.710853728787,177.745188954517,3213.8251732587,913.946545908023,18.0147150967416,55.2451262966742,118.897119638494,630.515028385956,1419.55954962324,562.059111018337,2688.99647344029,443.161991379843,67.2549363611686,2098.11381826717,1432.77034069418,180.147150967416,5956.86579198922,1096.49565888834,701.372907766473,3868.35982177364,429.951200308899,7210.68996272243,225.784429212495,263.014840412427,55.2451262966742,338.676643818742,0,999.216197365933,5511.30183859648,3145.36925589108,539.240471895798,146.519682786832,106.887309574,31.2255061676854,193.35794203836,351.887434889686,811.863160359821,54.0441452902248,1984.02062265447,480.392402579776,2666.17783431775,1025.63777950782,545.245376928045,288.235441547865,3904.38925196713,1048.45641863036,742.206261985753,245.000125315686,51.6421832773259,2512.45226549223,1746.22638337748,162.132435870674,2801.88868804654,2610.93270802108,1166.15255726241,263.014840412427,1095.29467788189,408.333542192809,1360.71148030721,666.544458579439,643.725819456899,14.4117720773933,1233.40749362357,1131.32410807537,314.657023689753,164.534397883573,126.103005677191,24.0196201289888,1058.06426668196,36.0294301934832,383.112941057371,33.6274681805843,1185.3682533656,1002.81914038528,1485.61350497796,2302.28058936358,200.563828077056,559.657149005439,3407.18311529706,879.118096720989,694.167021727776,332.671738786495,362.696263947731,109.289271586899,1564.87825140362,547.647338940944,3738.6538730771,2793.4818210014,253.406992360832,5934.04715286668,5651.81661635106,682.157211663281,2463.2120442278,1160.14765223016,302.647213625259,275.024650476922,154.926549831978,1068.87309574,178.946169960966,251.005030347933,61.2500313289214,19.215696103191,843.088666527506,3210.22223023935,86.4706324643596,88.8725944772585,453.970820437888,182.549112980315,751.814110037349,50.4412022708764,350.686453883236,1838.70192087409,2272.25606420234,162.132435870674,10.808829058045,90.0735754837079,425.147276283101,2522.06011354382,277.42661248982,1012.42698843688,2846.32498528517,1519.24097315854,54.0441452902248,297.843289599461,1896.34900918366,510.416927741012,206.568733109304,315.858004696202,333.872719792944,1089.28977284964,282.230536515618,1663.35869393247,140.514777754584,26.4215821418877,36.0294301934832,694.167021727776,295.441327586562,84.0686704514607,49.240221264427,64.8529743482697,23991.9975658404,108.08829058045,1004.02012139173,249.804049341483,50.4412022708764,701.372907766473,58.8480693160225,4434.02187581133,21.6176581160899,54.0441452902248,1584.09394750681,30.024525161236,3702.62444288362,427.549238296,264.215821418877,121.299081651393,74.4608223998652,1016.02993145623,103.284366554652,4483.26209707576,21.6176581160899,3139.36435085883,453.970820437888,7968.50897779203,271.421707457573,1873.53037006113,210.171676128652,49.240221264427,936.765185030563,623.309142347259,74.4608223998652,18.0147150967416,672.549363611686,586.078731147326,285.833479534967,538.039490889349,629.314047379506,43.2353162321798,106.887309574,4265.88453490841,4655.00238099803,93.6765185030563,2866.74166239481,287.034460541416,1205.78493047524,1306.66733501699,16.8137340902921,105.686328567551,952.377938114405,98.480442528854,2295.07470332488,321.86290972845,405.93158017991,682.157211663281,3.60294301934832,1181.76531034625,306.250156644607,799.853350295326,34.8284491870337,10746.3780457096,727.79448990836,20.4166771096405,287.034460541416,5492.08614249329,488.799269624922,314.657023689753,2.40196201289888,124.902024670742,1094.09369687544,6605.39553547192,187.353037006113,55.2451262966742,2213.40799488632,88.8725944772585,180.147150967416,493.60319365072,142.916739767483,13010.2272428668,3021.66821222679,127.303986683641,4540.90918538533,611.299332282765,407.13256118636,36.0294301934832,1411.15268257809,619.706199327911,815.466103379169,37.2304111999326,595.686579198922,175.343226941618,33.6274681805843,477.990440566877,1249.02024670742,327.867814760697,177.745188954517,3444.41352649699,46.8382592515281,45.6372782450787,395.122751121865,637.720914424652,342.27958683809,1041.25053259166,30.024525161236,109.289271586899,748.211167018001,745.809205005102,1300.66242998474,719.387622863214,2.40196201289888,1509.63312510695,1179.36334833335,75.6618034063147,44.4362972386293,1102.50056392059,27.6225631483371,445.563953392742,26.4215821418877,1405.14777754584,2100.51578028007,584.877750140877,1466.39780887477,117.696138632045,959.583824153102,1029.24072252717,749.41214802445,1388.33404345555,1002.81914038528,596.887560205371,2735.83473269182,1803.87347168706,38.431392206382,1279.04477186865,88.8725944772585,289.436422554315,5803.14022316369,611.299332282765,505.613003715214,1952.79511648679,6600.59161144612,4416.00716071459,1400.34385352005,24.0196201289888,176.544207948068,2607.32976500173,401.127656154113,372.304111999326,206.568733109304,416.740409237955,476.789459560427,140.514777754584,993.211292333686,434.755124334697,21.6176581160899,2394.75612686018,684.55917367618,168.137340902921,692.966040721326,235.39227726409,8.40686704514607,504.412022708764,1958.80002151904,123.701043664292,317.058985702652,931.961261004765,3642.57539256115,510.416927741012,777.034711172787,7190.27328561279,110.490252593348,12.0098100644944,133.308891715888,61.2500313289214,533.235566863551,1102.50056392059,245.000125315686,632.916990398854,2285.46685527328,440.760029366944,70.8578793805169,1510.83410611339,295.441327586562,445.563953392742,850.294552566203,283.431517522068,778.235692179237,103.284366554652,631.716009392405,586.078731147326,535.63752887645,955.980881133754,170.53930291582,1640.54005480993,417.941390244405,42.0343352257304,1598.5057195842,136.911834735236,3.60294301934832,868.309267662945,46.8382592515281,864.706324643596,4208.23744659884,586.078731147326,3611.34988639346,43.2353162321798,94.8774995095057,867.108286656495,4857.96817108798,1622.52533971319,9.60784805159551,243.799144309236,102.083385548202,109.289271586899,10.808829058045,277.42661248982,1461.59388484897,343.48056784454,1257.42711375256,147.720663793281,1014.82895044978,200.563828077056,79.264746425663,188.554018012562,735.000375947057,435.956105341146,363.89724495418,2452.40321516975,56.4461073031236,941.56910905636,22.8186391225393,9.60784805159551,201.764809083506,199.362847070607,265.416802425326,698.970945753574,62.4510123353708,20.4166771096405,3918.80102404452,1238.21141764937,347.083510863888,917.549488927371,822.671989417866,928.358317985416,1292.2555629396,4366.76693945016,300.24525161236,81.6667084385619,433.554143328248,160.931454864225,1725.80970626784,79.264746425663,2168.97169764769,2486.03068335034,27.6225631483371,1167.35353826885,99.6814235353035,835.88278048881,1734.21657331299,1427.96641666838,2305.88353238292,36.0294301934832,2984.43780102686,24.0196201289888,192.15696103191,863.505343637147,34.8284491870337,374.706074012225,34.8284491870337,724.191546889012,359.093320928382,694.167021727776,4185.4188074763,496.005155663618,323.063890734899,1250.22122771387,535.63752887645,835.88278048881,90.0735754837079,169.338321909371,904.338697856428,3293.08991968436,124.902024670742,3345.93308396814,22025.9916582827,81.6667084385619,6935.66531224551,115.294176619146,608.897370269866,3261.86441351668,978.799520256293,361.495282941281,48.0392402579776,569.264997057034,618.505218321461,18090.3769001479,63.6519933418203,13.2107910709438,1122.91724103023,607.696389263416,11406.9175992568,181.348131973865,1532.45176422948,16.8137340902921,1521.64293517144,1642.94201682283,1630.93220675834,948.774995095057,1020.83385548202,1952.79511648679,4.80392402579776,668.946420592338,39.6323732128315,509.215946734562,136.911834735236,104.485347561101,536.838509882899,75.6618034063147,56.4461073031236,236.59325827054,488.799269624922,36.0294301934832,291.838384567214,106.887309574,207.769714115753,38.431392206382,7680.27353624416,18.0147150967416,1215.39277852683,1566.07923241007,5919.63538078929,680.956230656832,1677.77046600987,9260.76454073162,1696.98616211306,971.593634217596,128.50496769009,48.0392402579776,2749.04552376277,13.2107910709438,124.902024670742,2253.04036809915,172.941264928719,121.299081651393,664.14249656654,1597.30473857775,289.436422554315,36.0294301934832,425.147276283101,1019.63287447557,58.8480693160225,823.872970424315,1968.40786957063,8997.7497003192,217.377562167348,76.8627844127641,97.2794615224046,257.00993538018,401.127656154113,129.705948696539,79.264746425663,2024.85397687375,238.995220283438,446.764934399191,450.36787741854,12.0098100644944,1546.86353630688,67.2549363611686,497.206136670068,85.2696514579102,302.647213625259,3566.91358915483,2711.81511256283,48.0392402579776,7.20588603869663,1351.10363225562,814.26512237272,455.171801444337,176.544207948068,342.27958683809,30.024525161236,1204.58394946879,21.6176581160899,223.382467199596,1.20098100644944,2549.68267669216,4054.51187777331,294.240346580113,401.127656154113,39.6323732128315,5215.86051100991,863.505343637147,6085.37075967931,5831.96376731848,1262.23103777836,2821.10438414973,4790.71323472681,1479.60859994571,7621.42546692814,204.166771096405,498.407117676517,1341.49578420402,152.524587819079,187.353037006113,1603.30964361,1046.05445661746,91.2745564901574,1671.76556097762,111.691233599798,2643.35919519522,492.40221264427,396.323732128315,58.8480693160225,3533.28612097425,558.456167998989,3075.71235751701,8447.70039936535,365.09822596063,487.598288618472,68.455917367618,345.882529857438,383.112941057371,38.431392206382,1172.15746229465,69.6568983740675,180.147150967416,30.024525161236,1292.2555629396,1770.24600350647,5235.0762071131,166.936359896472,970.392653211147,2387.55024082149,2289.06979829263,464.779649495933,700.171926760023,219.779524180247,106.887309574,444.362972386292,1258.62809475901,2352.72179163445,1235.80945563647,110.490252593348,315.858004696202,8452.50432339115,937.966166037012,1205.78493047524,9.60784805159551,509.215946734562,1674.16752299052,1263.43201878481,2208.60407086052],"untreated1":[29344.7126779444,6820.91938301778,72.0395916289874,127.387082758575,410.274259643136,746.751864446821,1417.0714792385,400.610411985588,571.04554340051,2033.80066611105,517.455115481385,36730.527883126,90.48875533885,895.223705730953,2271.00419952357,207.333458834647,43188.6137131832,484.070914482586,98.395539785934,791.55697631363,136.172398810891,357.562363329242,309.243125041507,5457.43833169841,6989.59745122224,107.18085583825,629.028629345792,3443.84389250769,39780.78961649,763.44396494622,935.636159571605,781.893128656083,3060.80411262673,498.127420166291,329.449351961833,247.745912675298,474.407066825039,4550.79371509945,1077.07974801388,10687.3369776418,1244.87928461311,15.813568894168,581.587922663289,42890.7914990097,347.019984066464,34.2627326040306,83.4605024969976,36.8983274197252,1730.70726230616,201.183737598026,831.09089854905,41.290985445883,1593.65633189004,40.4124538406515,1780.78356380436,1156.14759248472,3287.46526677647,1206.22389398292,956.720918097162,8361.86381859393,19.3276953150942,39.5339222354199,10.5423792627786,82.581970891766,839.876214601365,5988.07142125827,1443.42742739544,2792.85197303111,811.763203233956,3676.65476789405,41730.2512484988,405.881601616978,6383.41064361247,13576.8274272484,39.5339222354199,498.127420166291,1445.18449060591,907.523148204195,2456.37436822742,1308.13356018978,4809.96053864276,986.590992675035,1337.12510316242,243.35325464914,147.593309678901,1689.41627686028,61.4972123662087,62.3757439714403,546.446658454026,34982.2499887152,1161.41878211611,101.031134601629,900.494895362343,253.017102306687,79.9463760760714,1076.20121640865,632.542755766719,103.666729417323,13442.412091648,1076.20121640865,5197.39297654987,361.9550213554,620.243313293477,1202.709767562,1195.68151472014,3871.68878425546,530.633089559858,2097.93347329295,382.161248275726,3322.60653098574,168.678068204458,1681.50949241319,251.260039096224,161.649815362606,72.0395916289874,1034.91023096277,503.39860979768,489.342104113975,1621.76934325745,75.5537180499136,2293.84602125959,15770.5208455116,498.127420166291,5319.50886967706,2230.59174568291,17248.2110055111,2864.01303305486,340.870262829843,28789.480703438,2200.72167110504,345.262920856001,1904.65652014201,2844.68533773977,10201.5089999488,1947.70456879835,1705.22984575445,893.46664252049,1306.37649697932,4267.02800660966,441.02286582624,137.050930416122,1526.88792989244,144.957714863206,283.765708489792,963.749170939014,2306.14546373283,857.446846705996,875.017478810627,27545.4799504301,183.613105493395,1228.18718411371,244.231786254372,2215.65670839398,13.1779740784733,879.410136836785,1218.52333645616,69.4039968132927,2986.12892618205,165.163941783532,9715.68102225575,8808.15787405156,521.847773507543,1822.07454925024,1323.94712908395,1992.50968066516,1034.91023096277,1151.75493445857,791.55697631363,355.805300118779,2.63559481569466,366.347679381558,1651.63941783532,3400.79584385134,200.305205992794,3000.18543186576,388.310969512347,80.8249076813029,141.44358844228,383.918311486189,7.02825284185243,632.542755766719,1222.03746287709,16.6921004993995,70.2825284185243,396.217753959431,313.635783067665,5.27118963138932,4022.79622035528,8361.86381859393,4064.08720580117,8960.14384175662,4896.93516756068,413.788386064062,168.678068204458,4458.54789655013,917.186995861742,278.494518858403,11342.7215551446,379.525653460031,1352.93867205659,1152.6334660638,29.8700745778728,281.130113674097,51358.0791102314,999.768966753508,1727.19313588523,3182.92000575392,25.4774165517151,1536.55177754999,3767.1435232329,266.195076385161,303.093403804886,3213.66861193702,1039.30288898893,2213.89964518352,1721.92194625385,1649.88235462486,577.195264637131,7492.99606101992,723.031511105569,347.898515671695,458.593497930871,2791.09490982065,494.613293745365,326.813757146138,1118.37073345977,2886.85485479089,4477.87559186523,11.4209108680102,188.884295124784,378.6471218548,138.807993626585,63.2542755766719,21931.6629930005,7608.08370130525,88.7316921283869,990.105119095961,175.706321046311,1598.0489899162,743.237738025894,1352.06014045136,19.3276953150942,1383.6872782397,507.791267823838,46.5621750772723,7008.0466149321,4445.36992247166,1680.63096080796,1051.60233146217,5510.1502280123,795.949634339788,433.994612984387,1583.11395262726,505.155673008143,4035.09566282853,649.234856266118,107.18085583825,2730.47622905967,551.717848085416,76.4322496551452,18.4491637098626,271.46626601655,422.573702116377,2384.33477659844,486.706509298281,2148.00977479115,355.805300118779,203.81933241372,1455.72686986868,2337.77260152116,105.423792627786,7303.23323428991,1307.25502858455,1224.67305769279,4716.83618848821,230.175280570667,9492.53399452694,330.327883567064,147.593309678901,17.5706321046311,542.054000427869,11.4209108680102,453.322308299482,7031.76696827335,3882.23116351824,215.240243281731,212.604648466036,49.197769892967,7.02825284185243,303.971935410118,191.519889940479,1136.81989716963,32.5056693935675,1342.39629279381,536.782810796479,3519.3976105576,718.638853079411,228.418217360204,391.825095933273,2417.71897759724,557.867569322037,970.777423780867,143.200651652743,125.630019548112,2842.04974292408,1171.96116137889,108.937919048713,3482.49928313788,947.057070439615,1720.16488304338,480.55678806166,337.356136408917,569.288480190047,2713.78412856027,1122.76339148593,376.011527039105,29.8700745778728,802.099355576408,553.474911295879,147.593309678901,287.279834910718,496.370356955828,108.059387443481,1261.57138511251,15.813568894168,228.418217360204,85.2175657074607,732.695358763116,1222.91599448232,1169.3255665632,2884.21925997519,129.144145969038,454.200839904713,2425.62576204432,1649.88235462486,1266.8425747439,607.943870820235,459.472029536103,50.0763014981986,1872.15085074844,1621.76934325745,4331.16081379156,2552.13431319766,473.528535219807,9637.49170939014,4496.32475557509,428.723423352998,2297.36014768051,1698.20159291259,349.655578882158,381.282716670494,21.9632901307888,835.483556575207,121.237361521954,166.921004993995,36.8983274197252,5.27118963138932,540.296937217405,4255.60709574165,32.5056693935675,56.2260227348194,209.969053650341,466.500282377955,466.500282377955,238.082065017751,432.237549773924,1401.25791034433,4574.5140684407,230.175280570667,40.4124538406515,41.290985445883,260.923886753771,4094.83581198427,155.500094125985,1048.08820504124,2530.17102306687,1913.44183619432,2.63559481569466,466.500282377955,1113.09954382838,380.404185065263,115.087640285334,548.203721664489,155.500094125985,1489.11107086748,397.974817169894,1418.82854244896,43.0480486563461,7.90678444708398,118.60176670626,883.802794862943,367.226210986789,160.771283757374,80.8249076813029,120.358829916723,5403.84790377929,25.4774165517151,1241.36515819219,398.853348775125,102.788197812092,1124.52045469639,19.3276953150942,5328.29418572937,39.5339222354199,68.5254652080612,1887.08588803738,17.5706321046311,1049.84526825171,1002.4045615692,103.666729417323,10.5423792627786,22.8418217360204,763.44396494622,144.957714863206,5172.79409160339,18.4491637098626,7369.12310468227,289.915429726413,3970.08432404139,636.056882187645,1393.35112589724,83.4605024969976,19.3276953150942,748.508927657284,1173.71822458936,289.915429726413,53.5904279191248,498.127420166291,200.305205992794,444.536992247166,629.028629345792,710.732068632327,120.358829916723,25.4774165517151,5215.84214025973,7396.35758444445,35.1412642092621,1849.30902901242,161.649815362606,850.418593864144,1660.42473388764,171.313663020153,28.9915429726413,1332.73244513627,137.929462021354,3552.7818115564,283.765708489792,295.186619357802,455.079371509945,11.4209108680102,2312.29518496945,439.265802615777,151.107436099827,321.542567514749,18993.8533051062,448.929650273324,77.3107812603767,87.8531605231554,6267.4444717219,685.254652080612,988.348055885498,5.27118963138932,50.9548331034301,1292.31999129562,8542.84132927163,271.46626601655,13.1779740784733,2621.53831001096,148.471841284133,1033.15316775231,395.339222354199,66.7684019975981,25327.1876472205,2280.66804718111,88.7316921283869,3373.56136408917,427.844891747767,32.5056693935675,70.2825284185243,2100.56906810864,288.15836651595,571.04554340051,79.9463760760714,485.827977693049,253.895633911919,102.788197812092,704.582347395706,1096.40744332898,555.231974506342,257.409760332845,4399.68627899962,18.4491637098626,18.4491637098626,305.728998620581,462.986155957029,497.248888561059,1486.47547605179,1.75706321046311,32.5056693935675,490.220635719207,394.460690748968,1800.98979072469,886.438389678638,9.66384765754709,767.836622972378,1536.55177754999,129.144145969038,11.4209108680102,714.246195053253,2.63559481569466,192.39842154571,5.27118963138932,838.119151390902,3290.9793931974,870.62482078447,1896.74973569492,148.471841284133,1202.709767562,840.754746206597,1149.9978712481,985.712461069803,458.593497930871,465.621750772723,3106.48775609877,1341.51776118858,7.90678444708398,1414.4358844228,173.949257835848,148.471841284133,9572.48037060301,1015.58253564768,330.327883567064,2358.85736004672,6437.87960313682,3625.69993479062,2157.6736224487,52.7118963138932,241.596191438677,3258.47372380383,513.062457455227,89.6102237336185,142.322120047512,649.234856266118,925.972311914058,65.011338787135,1989.87408584947,312.757251462433,14.0565056837049,3065.19677065289,838.997682996134,39.5339222354199,499.884483376754,302.214872199654,39.5339222354199,897.859300546648,1281.77761203284,26.3559481569466,278.494518858403,1247.51487942881,2582.88291938077,553.474911295879,582.46645426852,4545.52252546806,201.183737598026,55.3474911295879,48.3192382877355,14.9350372889364,372.497400618179,1641.09703857254,335.599073198453,439.265802615777,2908.81814492167,265.316544779929,562.260227348194,1858.09434506474,188.005763519552,277.615987253171,566.652885374352,439.265802615777,1164.93290853704,48.3192382877355,469.13587719365,683.497588870149,326.813757146138,600.915617978383,239.839128228214,954.963854886699,609.700934030698,22.8418217360204,658.020172318434,28.1130113674097,18.4491637098626,1533.03765112906,16.6921004993995,998.890435148276,2534.56368109303,276.737455647939,2548.62018677674,170.435131414921,228.418217360204,489.342104113975,7165.30377226855,1172.83969298412,50.0763014981986,79.0678444708398,73.7966548394505,125.630019548112,28.9915429726413,547.325190059258,1732.46432551662,206.454927229415,1489.98960247271,79.0678444708398,556.989037716805,144.957714863206,617.607718477782,410.274259643136,1207.98095719339,745.873332841589,583.344985873752,2987.88598939251,115.966171890565,1255.42166387589,44.8051118668092,19.3276953150942,491.099167324438,513.062457455227,698.432626159085,346.141452461232,1341.51776118858,2.63559481569466,5486.42987467105,1478.5686916047,678.226399238759,617.607718477782,564.895822163889,2029.40800808489,438.387271010545,7455.21920199496,73.7966548394505,35.1412642092621,281.130113674097,79.9463760760714,1248.39341103404,18.4491637098626,2921.99611900015,3648.54175652664,80.8249076813029,797.706697550251,38.6553906301884,705.460879000938,2333.37994349501,1097.28597493421,1432.88504813266,7.90678444708398,3319.09240456481,9.66384765754709,292.551024542107,911.915806230353,38.6553906301884,651.870451081813,419.938107300683,937.393222782068,267.073607990392,1045.45261022555,3695.98246320915,1661.30326549287,1228.18718411371,759.929838525294,828.455303733355,733.573890368347,71.1610600237558,256.531228727614,2458.13143143789,5438.11063638332,175.706321046311,4650.06778649061,48805.0662654285,295.186619357802,11413.0040835631,231.053812175899,896.102237336185,4401.44334221008,715.124726658485,286.401303305486,15.813568894168,891.709579310027,400.610411985588,10243.6785169999,141.44358844228,3.51412642092621,1345.91041921474,1285.29173845376,14258.5679529081,376.011527039105,1952.09722682451,2.63559481569466,2516.9930489884,2842.04974292408,1252.7860690602,1091.13625369759,1750.03495762125,2993.1571790239,22.8418217360204,1189.53179348352,113.33057707487,399.731880380357,181.856042282932,161.649815362606,759.929838525294,14.9350372889364,13.1779740784733,375.132995433873,767.836622972378,44.8051118668092,56.2260227348194,169.55659980969,145.836246468438,17.5706321046311,9407.31642881948,5.27118963138932,687.890246896307,1357.33133008275,4755.4915791184,823.184114101966,765.201028156683,5798.30859452825,3009.8492795233,714.246195053253,27.2344797621782,27.2344797621782,6585.47291281573,3.51412642092621,76.4322496551452,3193.4623850167,44.8051118668092,57.9830859452825,374.254463828642,2319.3234378113,174.827789441079,14.0565056837049,341.748794435074,1337.12510316242,317.149909488591,1318.67593945256,2636.47334729989,10362.2802837062,74.6751864446821,24.5988849464835,175.706321046311,354.926768513548,289.036898121181,200.305205992794,144.079183257975,1407.40763158095,260.04535514854,272.344797621782,1199.19564114107,4.39265802615777,2550.3772499872,43.9265802615777,792.435507918861,43.9265802615777,72.0395916289874,1866.00112951182,2950.98766197279,86.9746289179238,24.5988849464835,1129.79164432778,462.986155957029,289.915429726413,530.633089559858,945.300007229152,3.51412642092621,1479.44722320994,26.3559481569466,111.573513864407,147.593309678901,1450.45568023729,5332.68684375553,101.90966620686,624.635971319635,75.5537180499136,2735.74741869106,647.477793055655,3170.62056328068,4947.89000066411,1389.83699947632,3923.52214896412,5595.36779371977,1828.22427048686,9169.23436380172,220.51143291312,665.048425160286,695.79703134339,28.9915429726413,55.3474911295879,2020.62269203257,1250.1504742445,51.8333647086617,1168.44703495797,23.7203533412519,2017.10856561165,335.599073198453,202.062269203257,10.5423792627786,2212.14258197305,762.565433340989,1418.82854244896,6227.03201788125,105.423792627786,140.565056837049,98.395539785934,559.6246325325,148.471841284133,24.5988849464835,1545.3370936023,26.3559481569466,26.3559481569466,37.7768590249568,2289.45336323343,2432.65401488617,7099.41390187618,105.423792627786,595.644428346993,2777.91693574217,3992.04761417218,650.991919476581,1019.0966620686,517.455115481385,80.8249076813029,332.963478382759,649.234856266118,1339.76069797812,845.147404232755,22.8418217360204,517.455115481385,2137.46739552837,455.957903115176,1635.82584894115,24.5988849464835,689.64731010677,6169.04893193597,2084.75549921448,1060.38764751449],"untreated2":[22932.5107924837,6899.05050107067,107.083079725592,141.661990886981,366.98263780958,732.292102498447,1300.61323916708,322.922412297487,561.628444185785,2696.0396218412,596.207355347174,40028.9937399227,76.965963552769,980.479448737448,1881.76203642784,414.946933936668,41073.0537672472,545.454437352232,168.432760818378,780.256398625535,219.18567881332,482.431583138733,334.634624142474,6173.45109105507,6846.62440995501,94.2554191334634,490.797448742295,2813.71946466463,47817.0568924652,999.999801812426,915.783421403237,583.937419128617,2926.37978812593,535.415398627958,317.345168561779,220.858851934033,639.709856485696,7750.69561951326,1021.75105238169,12607.3594645677,1298.94006604637,14.5008337128405,639.709856485696,49063.0131430224,715.002646917752,30.6748405463934,51.8683667420834,50.7529179949419,1305.63275852922,167.317312071237,898.493965822542,80.3123097941937,1304.51730978208,89.2358997713263,1625.20882458528,1186.27974258507,3227.55094985416,1063.02265602593,820.412553522632,7578.35878807989,27.8862186785395,47.4065717535171,18.4049043278361,128.276605921282,967.094063771749,6352.48061497129,1994.42235988914,2894.03177445883,769.65963552769,5034.02019584995,24931.952671735,222.532025054745,5060.79096578135,16248.7418996114,53.5415398627958,389.291612752411,1247.07169930429,1044.61775169809,2270.49592480668,2153.37380635682,3874.51122319628,1491.35497492829,1819.29690658792,176.79862642194,190.184011387639,2455.10269245862,49.0797448742295,80.8700341677645,567.205687921493,33280.5288197162,1238.14810932715,80.3123097941937,986.614416846727,273.842667423258,66.9269248284948,1124.37233711871,505.856006828706,93.1399703863219,14505.2955078291,1360.84747151273,5333.51818445746,275.51584054397,653.095241451395,1381.48327333485,576.687002272197,3876.74212069056,439.486806373782,1802.00745100722,399.330651476685,2690.46237810549,141.661990886981,1421.63942823194,393.753407740978,234.244236899732,141.10426651341,1063.02265602593,585.610592249329,433.909562638074,1479.6427630833,75.2927904320566,2222.5316286796,13605.1283688858,643.613927100691,4655.88307056895,1713.32927560947,16462.9080590626,2938.09199997092,295.593917992519,28166.196314072,2389.29121637726,417.177831430951,1662.57635761452,2294.47807287023,6971.55466963487,3726.71426420002,1480.20048745688,946.45826194963,1247.62942367786,3842.16320952917,522.58773803583,177.356350795511,1506.97125738827,144.450612754835,196.318979496918,818.181656028348,2758.50475168113,950.920056938196,752.370179946995,27970.9927833222,232.571063779019,972.113583133886,226.436095669741,1827.66277219148,15.0585580864113,728.945756257022,1272.72702048854,40.7138792706676,3172.33623687065,172.894555806945,12390.9624076222,10442.2734463659,390.407061499553,1534.29975169324,1161.18214577438,1636.92103643027,1510.87532800327,1257.11073802856,678.19283826208,167.317312071237,6.13496810927869,386.502990884557,1261.01480864356,4826.54672888161,326.268758538912,2132.7380045347,522.58773803583,99.8326628691714,131.065227789136,475.738890655884,9.48131435070342,616.285432795723,1305.63275852922,22.3089749428316,64.1383029606408,364.194015941726,408.811965827389,2.78862186785395,3570.5514396002,7820.96889058318,3535.97252843881,9944.22558076718,4834.35487011161,467.930749425893,121.583913438432,4053.5407471125,813.162136666211,411.042863321672,9496.93063316341,514.221872432268,2277.18861728953,986.056692473156,29.5593917992519,310.094751705359,51033.453354848,946.45826194963,1751.81225738585,4469.04540542274,34.578911161389,1283.32378358639,4103.1782163603,162.855517082671,339.654143504611,3523.70259222025,1337.98077219632,2078.08101592476,1485.77773119258,1322.92221410991,514.779596805839,7095.36948056759,917.456594523949,324.5955854182,485.220205006587,2375.34810703799,655.326138945678,416.62010705738,1208.5887175279,3293.92015030908,4862.24108879014,31.790289293535,161.182343961958,520.914564915118,133.85384965699,66.369200454924,24336.3030407614,9398.77114341495,132.180676536277,794.199507964805,145.566061501976,1028.44374486454,612.939086554298,1090.90887470446,21.7512505692608,1625.20882458528,1124.93006149228,55.772437357079,9329.61332109217,4011.71141909469,1623.53565146457,700.501813204912,5466.25658536731,664.807453296381,542.108091110808,2050.75252161979,538.761744869383,5603.45678126572,814.277585413353,119.91074031772,2131.06483141399,569.994309789347,153.374202731967,22.3089749428316,172.336831433374,331.288277901049,2611.26551705844,414.389209563097,1951.47758312419,421.081902045946,134.969298404131,1136.0845489637,1982.71014804416,112.102599087729,6681.53799537806,1504.18263552042,996.653455571001,4413.83069243923,295.036193618948,11306.7462254006,336.865521636757,159.509170841246,17.8471799542653,344.673662866748,21.19352619569,545.454437352232,5639.15114117425,3372.00156260899,197.99215261763,146.681510249118,69.1578223227779,7.25041685642027,300.055712981085,197.43442824406,1055.7722391695,30.6748405463934,1337.42304782275,320.691514803204,2693.80872434691,501.39421184014,195.203530749776,411.042863321672,1865.03030522072,581.148797260763,1102.62108654945,142.777439634122,161.182343961958,2660.90298630624,1375.90602959914,87.0050022770432,3597.87993390516,1319.01814349492,1368.09788836915,529.83815489225,462.353505690185,621.30495215786,2181.81774940893,1121.02599087729,465.699851931609,34.578911161389,769.65963552769,728.388031883451,143.335164007693,227.551544416882,269.380872434691,65.8114760813532,1320.69131661563,18.9626287014068,195.761255123347,142.777439634122,956.497300673904,1298.3823416728,1085.33163096876,3965.97802046189,95.9285922541758,438.371357626641,2165.64374257538,1414.94673574909,903.513485184679,479.085236897308,451.199018218769,48.5220205006587,2214.16576307604,1122.699163998,4520.91377216482,2102.62088836188,431.12094077022,7815.39164684748,3827.66237581633,462.911230063755,1740.10004554086,1704.9634100059,377.579400907425,776.91005238411,22.8666993164024,769.101911154119,98.7172141220298,105.409906604879,23.4244236899732,6.69269248284948,374.233054666,3778.5826309421,41.8293280178092,48.5220205006587,203.569396353338,213.050710704042,495.816968104432,164.528690203383,540.992642363666,1692.69347378735,2979.36360361516,267.707699313979,41.8293280178092,84.2163804091892,267.707699313979,4063.57978583677,197.99215261763,1216.39685875789,2672.61519815122,2104.85178585616,8.92358997713263,474.623441908742,1200.22285192434,241.494653756152,150.027856490542,549.916232340799,235.917410020444,1433.35164007693,356.385874711735,1352.48160590916,52.4260911156542,11.7122118449866,89.2358997713263,900.724863316825,500.836487466569,121.583913438432,62.4651298399284,117.122118449866,10095.9266103784,51.3106423685127,1278.30426422425,466.25757630518,127.16115717414,817.066207281207,40.1561548970969,5300.05472204321,124.930259679857,80.8700341677645,2574.45570840277,15.0585580864113,1195.76105693577,904.628933931821,65.8114760813532,13.385384965699,18.9626287014068,794.199507964805,239.82148063544,5142.77644869625,5.5772437357079,6659.22902043523,395.984305235261,5723.92524595701,761.851494297699,1276.63109110354,90.9090728920387,17.2894555806945,742.331141222721,626.324471519997,136.084747151273,58.0033348513621,444.506325735919,266.592250566837,411.042863321672,854.43374031045,867.261400902578,198.549876991201,37.9252574028137,5092.02353070131,6699.38517533233,51.3106423685127,1786.39116854724,148.35468336983,895.147619581117,1620.18930522314,169.54820956552,35.6943599085305,1102.62108654945,208.031191341905,2480.75801364287,219.18567881332,306.190681090364,554.935751702936,26.2130455578271,1833.79774030076,498.047865598715,326.826482912483,359.732220953159,22489.6776398685,376.463952160283,39.5984305235261,60.7919567192161,6442.27423911619,605.688669697878,1378.69465146699,11.1544874714158,79.1968610470521,1431.67846695622,9703.84637575817,417.177831430951,17.2894555806945,2386.50259450941,119.353015944149,880.646785868277,376.463952160283,87.0050022770432,19509.7563118798,2211.93486558175,85.8895535299016,3649.74830064725,430.005492023079,65.2537517077824,61.9074054663577,1820.97007970863,211.377537583329,672.057870152802,64.6960273342116,508.086904322989,221.416576307603,110.987150340587,622.978125278572,970.998134386745,540.434917990095,349.693182228885,5155.04638491481,37.9252574028137,12.8276605921282,819.854829149061,467.373025052322,428.332318902366,1224.76272436145,10.596763097845,36.8098086556721,453.429915713052,455.103088833764,1922.47591569851,917.456594523949,51.3106423685127,592.303284732179,1530.39568107825,122.699362185574,17.8471799542653,741.77341684915,10.0390387242742,189.068562640498,4.46179498856632,1011.71201365741,2506.9710592007,1032.9055398531,1733.96507743159,169.54820956552,1264.91887925855,754.601077441278,906.859831426104,1081.42756035376,395.984305235261,517.568218673693,5102.62029379915,1529.83795670468,9.48131435070342,2402.11887696939,130.507503415565,158.951446467675,7442.27404092862,1218.62775625218,264.361353072554,2925.26433937879,4716.1173029146,2593.97606147774,1685.44305693093,37.9252574028137,725.041685642027,3077.52309336362,524.818635530113,213.050710704042,141.661990886981,919.129767644661,983.268070605302,76.4082391791982,3448.40980178819,292.805296124665,16.7317312071237,3156.1622300371,900.167138943254,45.7333986328048,413.831485189526,394.868856488119,45.7333986328048,910.206177667529,1697.15526877591,10.0390387242742,259.341833710417,1616.84295898172,2657.55664006481,676.519665141368,583.379694755046,3862.79901135129,210.819813209759,76.4082391791982,68.0423735756363,16.7317312071237,309.537027331788,1588.39901592961,445.06405010949,416.062382683809,3061.90681090364,304.517507969651,426.101421408083,2119.352619569,202.453947606197,257.110936216134,701.059537578483,534.299949880816,877.858164000423,52.983815489225,472.392544414459,842.163804091892,274.958116170399,495.816968104432,250.975968106855,1137.19999771084,532.069052386533,22.3089749428316,648.633446462828,20.0780774485484,44.6179498856632,1066.36900226735,10.596763097845,1057.44541229022,2587.84109336846,283.881706147532,2600.66875396059,99.8326628691714,172.336831433374,443.390876988778,6287.22686326351,1042.94457857738,26.2130455578271,83.1009316620477,55.772437357079,177.356350795511,22.8666993164024,467.930749425893,1755.15860362728,210.262088836188,1673.73084508594,92.5822460127511,595.649630973603,134.41157403056,442.833152615207,324.5955854182,1286.11240545424,596.207355347174,512.548699311556,3113.77517764572,99.8326628691714,987.729865593869,45.175674259234,21.7512505692608,368.655810930292,328.499656033195,623.535849652143,297.824815486802,1238.14810932715,7.25041685642027,4633.01637125255,2272.1690979274,703.290435072766,476.296615029454,638.036683364983,1981.03697492344,526.491808650825,5830.45060130903,89.2358997713263,37.9252574028137,253.764589974709,79.1968610470521,1244.28307743643,22.3089749428316,3684.88493618221,3219.74280862417,116.564394076295,970.998134386745,41.8293280178092,614.054535301439,2583.3792983799,1290.01647606924,1356.38567652416,3.90407061499553,3308.42098402192,9.48131435070342,286.670328015386,1097.60156718731,52.983815489225,769.65963552769,378.137125280995,1008.92339178956,225.87837129617,1073.61941912377,3096.48572206502,1433.35164007693,1532.62657857253,727.830307509881,847.18332345403,598.995977215028,62.4651298399284,238.706031888298,1732.84962868444,4502.50886783698,187.395389519785,5883.99214117183,78028.4284844213,357.501323458876,9393.75162405281,187.953113893356,1009.48111616313,3745.11916852785,726.157134389168,283.881706147532,37.3675330292429,894.589895207547,479.085236897308,8667.03676529007,163.970965829812,6.13496810927869,1378.69465146699,2275.51544416882,18551.0281137116,372.002157171717,2607.36144644344,2.78862186785395,1464.02648062332,3063.02225965078,993.864833703147,1174.56753074008,1940.32309565278,2602.3419270813,16.7317312071237,1209.70416627504,56.3301617306498,392.637958993836,190.74173576121,191.857184508352,648.075722089258,27.8862186785395,12.8276605921282,388.17616400527,824.316624137627,75.2927904320566,57.4456104777913,215.281608198325,128.276605921282,19.5203530749776,10099.8306809934,6.69269248284948,738.984794981296,1247.62942367786,4654.20989744824,1158.9512482801,1166.75938951009,5548.79979265579,2602.89965145488,685.4432551185,73.0618929377735,30.1171161728226,6071.94525506519,5.01951936213711,43.5025011385216,2596.7646833456,39.5984305235261,52.983815489225,382.598920269562,2267.14957856526,162.855517082671,18.4049043278361,273.842667423258,1783.60254667939,290.574398630381,1249.30259679857,3324.03726648191,11428.3301388391,90.3513485184679,27.8862186785395,211.9352619569,383.156644643132,247.07189749186,189.626287014068,125.487984053428,1135.52682459013,387.060715258128,271.611769928975,1845.50995214574,11.1544874714158,1858.33761273787,51.8683667420834,934.188325731073,46.8488473799463,187.953113893356,2708.86728243333,4287.22725963866,111.544874714158,32.9057380406766,889.012651471839,460.680332569472,196.318979496918,449.525845098056,849.971945321883,3.90407061499553,1577.24452845819,81.4277585413353,104.294457857738,131.065227789136,1485.77773119258,6697.71200221161,198.549876991201,582.821970381475,79.1968610470521,3586.72544643375,611.823637807156,2718.9063211576,3793.64118902851,1634.69013893598,3578.35958083019,5507.52818901155,1807.02697036936,8926.93632337406,283.881706147532,755.158801814849,926.380184501082,42.9447767649508,100.948111616313,2837.14388835461,1209.14644190147,59.6765079720745,963.747717530325,46.2911230063755,1702.17478813805,354.712701591022,242.610102503294,13.385384965699,1764.08219360441,657.557036439961,1825.43187469719,5961.51582909817,181.260421410507,221.416576307603,170.663658312662,1184.60656946436,217.512505692608,18.4049043278361,1536.53064918753,25.0975968106855,24.5398724371147,143.335164007693,2452.31407059076,2240.37880863386,6398.77173797767,105.96763097845,587.283765370042,3013.38479040298,3586.72544643375,933.630601357502,1213.60823689004,749.02383370557,74.7350660584858,230.897890658307,676.519665141368,2031.23216854482,851.087394069025,17.8471799542653,476.296615029454,3571.10916397377,568.321136668635,1994.98008426271,41.2716036442384,767.986462406977,9341.88325731073,2484.66208425787,1392.63776080626],"untreated3":[24643.327189291,7711.52782477406,113.925545824173,295.590605381637,464.939389714867,648.14398367536,1291.66936414163,327.920827845254,657.381190093537,2746.52937500438,606.576554793568,47020.4597373227,72.3581169423799,937.57645144488,1916.72033177155,409.51615120581,43134.6749040766,492.651008969395,177.046456348376,846.743921666148,289.43246776952,475.716130536072,411.055685608839,6824.75600862915,8174.9276800859,110.846477018114,618.892830017803,3668.71048241896,46186.0320908808,775.925339126797,1083.83221973267,597.339348375392,2769.62239104982,500.348680984542,295.590605381637,244.785970081668,680.474206138977,6858.6257654958,1085.3717541357,14151.4002326459,1424.06932280216,26.1720848514991,581.944004345098,46834.1760745561,989.920621147878,32.3302224636166,58.5023073151157,49.2651008969395,1337.85539623251,101.609270599938,962.20900189335,98.530201793879,1380.96235951734,127.781355451437,1785.85990751406,1123.86011421143,3493.20356047362,1082.29268532964,922.181107414586,5764.01680494192,23.0930160454404,43.1069632848221,13.8558096272642,130.860424257496,988.381086744849,6709.29092840195,1594.95764153842,3174.51993904654,695.869550169271,4866.46824797581,34711.882185103,324.841759039195,6116.57018323565,15855.6648167994,52.3441697029982,531.139369045129,1584.18090071721,1136.17638943567,2581.79919388024,1785.85990751406,3965.84062220363,1399.43677235369,1614.9715887778,220.153419633198,157.032509108995,2949.74791620425,73.8976513454093,87.7534609726735,668.157930914742,40014.0386691361,1451.78094205669,113.925545824173,1031.48805002967,240.16736687258,69.2790481363212,1019.17177480544,654.302121287478,81.5953233605561,14659.4465856456,1094.60896055387,6242.81200428405,252.483642096815,549.613781881481,1587.25996952327,665.078862108683,4099.78011526718,460.320786505779,1884.39010930794,401.818479190663,3256.1152624071,115.465080227202,1340.93446503857,363.330119114929,234.009229260463,76.976720151468,837.506715247972,621.971898823861,414.134754414898,1584.18090071721,76.976720151468,2281.58998528951,16419.1344083081,606.576554793568,5001.94727544239,1892.08778132308,15229.0743147664,3019.02696434057,294.051070978608,34139.1753871761,2397.05506551671,518.823093820894,1775.08316669285,3192.99435188289,6128.88645845988,3513.217507713,1374.80422190522,951.432261072144,1291.66936414163,4021.26386071269,540.376575463305,204.758075602905,1390.19956593551,113.925545824173,207.837144408964,926.799710623675,2118.3993385684,943.734589056997,685.092809348065,33986.7614812761,226.311557245316,920.641573011557,258.641779708932,2019.86913677452,16.934878433323,886.771816144911,1436.38559802639,53.8837041060276,3753.38487458558,180.125525154435,9562.04817721535,8795.36004450673,364.869653517958,1605.73438235962,1205.45543757199,1844.36221482917,2064.51563446237,1156.19033667505,663.539327705654,270.958054933167,7.6976720151468,420.292892027015,1565.70648788086,4734.06828931528,335.6184998604,2771.16192545285,558.850988299658,112.386011421143,149.334837093848,406.437082399751,15.3953440302936,572.706797926922,1305.5251737689,21.553481642411,64.6604449272331,429.530098445191,360.25105030887,9.23720641817616,4075.14756481872,8715.3042555492,4413.84513348517,9368.06684243365,4633.99855311837,469.557992923955,95.4511329878203,4929.58915850001,851.362524875236,438.767304863367,10465.7548717936,546.534713075423,1965.98543266849,963.748536296379,29.2511536575578,324.841759039195,77155.3061422194,802.097423978296,1593.41810713539,4989.63100021815,24.6325504484698,1417.91118519004,4004.32898227936,226.311557245316,312.52548381496,3785.7150970492,1048.42292846299,2821.96656075282,1493.34837093848,1868.99476527764,532.678903448159,9465.0575098245,1108.46477018114,320.223155830107,384.88360075734,2871.23166164976,574.246332329951,312.52548381496,1120.78104540537,2902.02234971034,5362.19832575126,26.1720848514991,170.888318736259,474.176596133043,118.544149033261,38.488360075734,26533.875436211,10174.782869621,161.651112318083,682.013740542006,104.688339405996,1433.30652922033,871.376472114618,1265.49727929013,33.8697568666459,1631.90646721112,949.892726669115,67.7395137332918,9231.04828056404,5255.97045194223,1608.81345116568,766.688132708621,5916.43071084183,698.948618975329,512.664956208777,1933.65521020488,675.855602929889,5568.49593575719,829.809043232825,107.767408212055,2229.24581558651,563.469591508746,152.413905899907,21.553481642411,166.269715527171,378.725463145222,2307.76207014101,400.278944787634,1904.40405654732,281.734795754373,158.572043512024,1525.6785934021,2253.87836603498,89.2929953757029,7011.0396713957,1514.90185258089,1128.47871742052,4690.96132603046,255.562710902874,10359.5269979846,324.841759039195,132.399958660525,10.7767408212055,421.832426430045,9.23720641817616,697.4090845723,6967.93270811088,4087.46384004295,252.483642096815,193.981334781699,69.2790481363212,13.8558096272642,252.483642096815,209.376678811993,1016.09270599938,36.9488256727046,1357.8693434719,250.944107693786,3490.12449166756,720.50210061774,221.692954036228,414.134754414898,2249.25976282589,471.097527326984,1136.17638943567,143.17669948173,186.283662766553,3533.23145495238,1317.84144899313,100.069736196908,3584.03609025235,1545.69254064148,1919.79940057761,524.981231433012,551.153316284511,806.716027187384,2711.1200837347,1180.82288712352,481.87426814819,46.1860320908808,949.892726669115,751.292788678327,166.269715527171,243.246435678639,286.353398963461,66.1999793302625,1462.55768287789,9.23720641817616,173.967387542318,143.17669948173,946.813657863056,1367.10654989007,1165.42754309323,4286.06377803374,110.846477018114,460.320786505779,2412.45040954701,1909.02265975641,1103.84616697205,418.753357623986,508.046352999689,63.1209105242038,2164.58537065928,1110.00430458417,4627.84041550626,2392.43646230762,375.646394339164,8930.83907197332,4158.2824225823,508.046352999689,1782.780838708,1554.92974705965,504.96728419363,488.032405760307,29.2511536575578,842.12531845706,93.9115985847909,133.939493063554,33.8697568666459,9.23720641817616,404.897547996722,3828.82206033402,52.3441697029982,40.0278944787634,209.376678811993,290.972002172549,509.585887402718,158.572043512024,449.544045684573,1434.84606362336,3804.18950988555,246.325504484698,21.553481642411,49.2651008969395,272.497589336197,3850.37554197643,173.967387542318,1206.99497197502,2061.43656565631,2072.21330647752,7.6976720151468,429.530098445191,1166.96707749625,177.046456348376,143.17669948173,455.70218329669,224.772022842287,1742.75294422924,381.804531951281,1314.76238018707,53.8837041060276,7.6976720151468,101.609270599938,880.613678532794,506.506818596659,190.902265975641,120.08368343629,96.9906673908497,9897.66667707575,36.9488256727046,1220.85078160228,441.846373669426,112.386011421143,937.57645144488,20.0139472393817,5185.15186940288,120.08368343629,112.386011421143,2957.4455882194,12.3162752242349,2082.99004729872,786.702079948003,76.976720151468,16.934878433323,16.934878433323,803.636958381326,241.706901275609,5579.2726765784,9.23720641817616,6912.50946960183,320.223155830107,6098.09577039929,748.213719872269,1479.49256131121,110.846477018114,15.3953440302936,698.948618975329,889.85088495097,149.334837093848,80.0557889575267,394.120807175516,252.483642096815,429.530098445191,948.353192266086,1002.23689637211,190.902265975641,46.1860320908808,5275.98439918162,7229.65355662587,40.0278944787634,1775.08316669285,175.506921945347,988.381086744849,1542.61347183542,200.139472393817,33.8697568666459,1122.3205798084,246.325504484698,3165.28273262836,232.469694857433,255.562710902874,581.944004345098,32.3302224636166,2001.39472393817,460.320786505779,332.539431054342,440.306839266397,19872.310074303,389.502203966428,44.6464976878514,115.465080227202,7689.97434313165,711.264894199564,1487.19023332636,15.3953440302936,78.5162545544974,1414.83211638398,9845.32250737276,354.092912696753,13.8558096272642,2383.19925588945,178.585990751406,1002.23689637211,301.748742993754,80.0557889575267,26031.9872208234,2086.06911610478,83.1348577635854,3382.3570834555,488.032405760307,73.8976513454093,64.6604449272331,2042.96215281996,249.404573290756,628.130036435979,60.041841718145,429.530098445191,275.576658142255,120.08368343629,711.264894199564,934.497382638821,766.688132708621,249.404573290756,5890.25862599033,15.3953440302936,4.61860320908808,889.85088495097,446.464976878514,414.134754414898,1422.52978839913,4.61860320908808,38.488360075734,412.595220011868,372.567325533105,1845.9017492322,919.102038608528,18.4744128363523,789.781148754062,1693.4878433323,140.097630675672,7.6976720151468,834.427646441913,9.23720641817616,187.823197169582,3.07906880605872,1039.18572204482,2692.64567089835,862.139265696441,1731.97620340803,230.930160454404,1154.65080227202,738.976513454093,1051.50199726905,932.957848235792,500.348680984542,468.018458520925,6133.50506166897,1374.80422190522,6.15813761211744,2912.79909053155,127.781355451437,178.585990751406,10128.5968375302,1211.61357518411,292.511536575578,3171.44087024048,4695.57992923955,3122.17576934354,1859.75755885947,40.0278944787634,769.76720151468,3636.38025995535,468.018458520925,238.627832469551,150.874371496877,869.836937711588,880.613678532794,87.7534609726735,2587.95733149235,212.455747618052,13.8558096272642,3132.95251016475,932.957848235792,61.5813761211744,489.571940163336,371.027791130076,33.8697568666459,929.878779429733,1490.26930213242,15.3953440302936,220.153419633198,1541.07393743239,1842.82268042614,655.841655690507,665.078862108683,4698.65899804561,213.995282021081,49.2651008969395,75.4371857484386,24.6325504484698,292.511536575578,1678.092499302,529.5998346421,440.306839266397,2627.98522597112,249.404573290756,351.013843890694,2173.82257707746,192.44180037867,274.037123739226,637.367242854155,477.255664939102,903.706694578234,61.5813761211744,497.269612178483,694.330015766241,304.827811799813,649.68351807839,278.655726948314,1059.1996692842,563.469591508746,18.4744128363523,672.77653412383,29.2511536575578,40.0278944787634,1183.90195592958,24.6325504484698,1077.67408212055,2835.82237038008,360.25105030887,2954.36651941334,129.320889854466,186.283662766553,541.916109866335,6470.6630959324,1066.89734129935,33.8697568666459,98.530201793879,40.0278944787634,193.981334781699,32.3302224636166,429.530098445191,1985.99937990787,204.758075602905,1647.30181124141,76.976720151468,535.757972254217,138.558096272642,391.041738369457,329.460362248283,1043.80432525391,660.460258899595,586.562607554186,3628.6825879402,138.558096272642,1265.49727929013,40.0278944787634,20.0139472393817,323.302224636166,329.460362248283,635.827708451126,369.488256727046,1140.79499264476,4.61860320908808,4697.11946364258,2109.16213215022,686.632343751094,643.525380466272,666.618396511713,2218.46907476531,592.720745166303,5528.46804127843,117.004614630231,24.6325504484698,301.748742993754,81.5953233605561,1465.63675168395,10.7767408212055,3139.11064777686,3370.04080823127,104.688339405996,972.985742714555,67.7395137332918,611.195158002656,2938.97117538305,1009.93456838726,1542.61347183542,6.15813761211744,3930.43133093396,3.07906880605872,297.130139784666,1227.0089192144,61.5813761211744,697.4090845723,491.111474566366,954.511329878203,227.851091648345,1005.31596517817,2999.01301710119,1393.27863474157,1194.67869675078,728.199772632887,840.58578405403,577.32540113601,70.8185825393505,237.088298066521,1832.04593960494,4834.13802551219,169.34878433323,7694.59294634074,40184.9269878723,323.302224636166,9451.20170019724,178.585990751406,732.818375841975,4466.18930318817,791.320683157091,257.102245305903,36.9488256727046,791.320683157091,464.939389714867,11763.5823735473,137.018561869613,7.6976720151468,1598.03671034448,1371.72515309916,17315.1434308712,307.906880605872,2671.09218925594,4.61860320908808,1962.90636386243,2059.89703125328,1094.60896055387,1240.86472884166,2380.12018708339,2714.19915254076,15.3953440302936,1239.32519443863,47.7255664939102,341.776637472518,184.744128363523,153.953440302936,692.790481363212,32.3302224636166,13.8558096272642,340.237103069489,1074.59501331449,72.3581169423799,58.5023073151157,201.679006796846,130.860424257496,13.8558096272642,9808.37368170005,6.15813761211744,685.092809348065,1285.51122652952,4804.88687185463,1114.62290779326,1302.44610496284,4937.28683051516,2644.92010440444,746.674185469239,84.6743921666148,30.7906880605872,5163.59838776047,7.6976720151468,80.0557889575267,3199.15248949501,70.8185825393505,66.1999793302625,517.283559417865,2272.35277887133,132.399958660525,15.3953440302936,318.683621427077,2036.80401520784,264.79991732105,1247.02286645378,4165.98009459745,12622.6425704377,63.1209105242038,30.7906880605872,210.916213215022,386.423135160369,237.088298066521,207.837144408964,160.111577915053,1414.83211638398,403.358013593692,304.827811799813,1134.63685503264,3.07906880605872,1816.65059557464,41.5674288817927,928.339245026704,58.5023073151157,187.823197169582,2835.82237038008,4221.4033331065,86.2139265696441,20.0139472393817,835.967180844942,403.358013593692,193.981334781699,460.320786505779,928.339245026704,1.53953440302936,1845.9017492322,49.2651008969395,93.9115985847909,73.8976513454093,1922.87846938367,6781.64904534433,177.046456348376,609.655623599626,52.3441697029982,3697.96163607652,643.525380466272,3584.03609025235,4138.26847534292,1882.85057490491,4250.65448676406,7563.73252208324,1810.49245796253,9358.82963601548,335.6184998604,691.250946960183,986.84155234182,52.3441697029982,95.4511329878203,2347.78996461977,1228.54845361743,53.8837041060276,1186.98102473564,75.4371857484386,1788.93897632012,272.497589336197,290.972002172549,16.934878433323,2323.1574141713,857.520662487353,2313.92020775313,7383.60699692881,198.599937990787,349.474309487665,166.269715527171,1359.40887787492,267.878986127109,21.553481642411,1704.2645841535,40.0278944787634,29.2511536575578,113.925545824173,2611.05034753779,2032.18541199875,7177.30938692288,95.4511329878203,671.236999720801,3052.89672120722,3180.67807665866,1190.0600935417,974.525277117585,552.69285068754,73.8976513454093,310.985949411931,797.478820769208,1721.19946258682,815.953233605561,16.934878433323,549.613781881481,3551.70586778873,726.660238229858,2206.15279954107,44.6464976878514,880.613678532794,8042.52772142537,1967.52496707152,1842.82268042614],"untreated4":[24424.9876515564,7387.36146127956,122.391005661394,256.755044485315,383.137061200885,762.283111347594,1366.25611754621,400.431442435647,486.903348609458,2395.93696952359,512.179751952572,40556.6543325353,61.1955028306969,896.647150171515,1728.10778645816,538.786492313744,43595.1440817812,564.062895656858,151.658420058684,790.220188726825,208.862911835205,552.089862494331,332.584254514657,5410.48065244444,8033.90525205605,98.4449393363385,589.339298999972,3675.72118089599,45718.3619626028,637.231431650083,1092.20669182613,671.820194119607,3011.88300888473,492.224696681692,411.074138580116,300.65616608125,880.683105954812,6702.23789697937,1181.33927203606,11909.1769856608,1332.99769209475,26.6067403611726,675.811205173783,44224.393491323,740.997719058656,38.5797735237002,46.561795632052,78.4898840654591,1311.71229980581,129.042690751687,843.43366944917,65.1865138848728,1395.5235319435,98.4449393363385,1785.31227823468,1237.21342679452,3075.73918575155,1177.34826098189,867.379735774225,6372.31431650083,30.5977514153484,47.8921326501106,21.285392288938,106.42696144469,960.503327038329,5941.28512264983,1516.58420058684,2787.05605283283,694.435923426604,3595.90095981247,36094.7039739667,324.602232406305,5959.90984090265,13041.2937880287,91.7932542460453,556.080873548506,1480.66510109925,981.788719327267,2265.56394175384,1317.03364787804,3719.62230249192,1430.11229441302,1678.88531678999,216.844933943556,159.640442167035,2229.64484226626,78.4898840654591,59.8651658126383,574.705591801327,48806.0741815169,1191.98196818053,106.42696144469,884.674117008988,234.139315178319,81.1505581015763,1023.02916688708,709.069630625249,79.8202210835177,15893.5363547464,1057.61792935661,5031.33460229773,258.085381503374,441.671889995464,1313.04263682387,568.053906711034,4370.15710432259,477.590989483047,1976.88080883512,357.860657857771,3182.16614719624,111.748309516925,1547.18195200218,303.316840117367,188.907856564325,66.5168509029314,830.130299268584,577.366265837445,384.467398218944,1438.09431652138,95.7842653002212,2250.9302345552,15769.815012067,586.678624963855,4881.00651925711,1995.50552708794,15079.3700996945,2728.52122403825,348.548298731361,41007.6385816572,2246.93922350102,466.948293338578,1509.93251549654,3332.49423023686,6529.29408463175,3222.076257738,1422.13027230467,887.334791045105,1372.9078026365,4343.55036396142,412.404475598175,162.301116203153,1507.27184146043,167.622464275387,202.211226744911,815.496592069939,2285.51899702472,927.244901586864,613.285365325028,30791.980619985,242.12133728667,1017.70781881485,264.737066593667,1769.34823401798,13.3033701805863,1019.03815583291,1225.240393632,62.5258398487555,3273.95940144228,198.220215690736,10049.3658344149,10375.2984038392,357.860657857771,1693.51902398863,1072.25163655525,2101.93248853263,1954.26507952812,1186.6606201083,666.498846047373,255.424707467257,3.99101105417588,458.966271230227,1688.1976759164,4209.1863251375,347.217961713302,2366.6695551263,413.734812616233,105.096624426632,137.024712860039,421.716834724585,5.32134807223451,623.928061469496,1475.34375302702,15.9640442167035,73.1685359932245,407.08312752594,317.950547316012,3.99101105417588,4520.48518736322,9397.50069556615,3936.46723643548,10604.1163709453,4807.83798326388,436.35054192323,103.766287408573,4553.74361281468,871.370746828401,353.869646803595,9106.15688861131,518.831437042865,1543.19094094801,1125.4651172776,34.5887624695243,329.92358047854,88694.8993309868,776.916818546239,1706.82239416922,5679.20873009228,22.6157293069967,1388.87184685321,3700.9975842391,254.094370449198,347.217961713302,4126.70543001786,1222.57971959588,2475.75719060711,1585.76172552588,1625.67183606764,520.161774060924,8205.51872738562,964.494338092505,355.199983821654,478.921326501106,2865.54593689828,715.721315715542,262.07639255755,1211.93702345141,3236.70996493664,5080.5570719659,34.5887624695243,195.559541654618,340.566276623009,110.417972498866,65.1865138848728,29758.3087569535,9551.81978966095,162.301116203153,613.285365325028,141.015723914215,1814.57969263197,967.155012128623,1241.2044378487,47.8921326501106,1893.06957669743,1084.22466971778,69.1775249390487,9840.50292257967,5097.85145320066,1354.28308438368,823.478614178291,5405.15930437221,778.247155564297,540.116829331803,1746.73250471098,578.696602855503,4262.39980585984,723.703337823894,99.7752763543971,2647.37066593667,541.447166349862,170.283138311504,23.9460663250553,158.310105148977,352.539309785536,2816.32346723012,476.260652464989,1960.91676461842,387.128072255061,250.103359395022,1334.3280291128,2075.32574817146,121.060668643335,8511.4962415391,1392.86285790738,1180.008935018,4312.95261254607,305.977514153484,10078.6332488122,295.334818009015,182.256171474032,15.9640442167035,496.215707735868,10.642696144469,651.865138848728,6997.57271498838,4136.01778914427,260.746055539491,186.247182528208,61.1955028306969,9.3123591264104,294.004480990957,220.835944997732,1057.61792935661,17.2943812347622,1411.4875761602,351.208972767478,3791.46050146709,678.4718792099,260.746055539491,399.101105417588,2574.20212994345,449.653912103816,972.476360200857,186.247182528208,107.757298462749,3804.76387164768,1470.02240495478,85.1415691557522,4022.93914260929,1615.02913992317,1958.2560905823,627.919072523672,576.035928819386,743.658393094773,2184.41338365227,1126.79545429566,453.644923157992,41.2404475598175,940.54827176745,690.444912372428,219.505607979674,232.80897816026,393.779757345354,74.4988730112832,1451.39768670196,21.285392288938,182.256171474032,155.649431112859,811.505581015763,1214.59769748753,1142.75949851236,4247.7660986612,133.033701805863,441.671889995464,2405.24932865,1830.54373684867,1327.67634402251,412.404475598175,425.707845778761,58.5348287945796,2020.78193043106,1209.27634941529,4601.63574546479,2249.59989753714,425.707845778761,8692.42207599507,4198.54362899303,530.804470205393,1787.9729522708,1512.59318953266,395.110094363412,498.876381771986,23.9460663250553,798.202210835177,95.7842653002212,162.301116203153,26.6067403611726,3.99101105417588,482.912337555282,4117.39307089145,31.9280884334071,62.5258398487555,227.487630088025,292.674143972898,529.474133187334,163.631453221211,417.725823670409,1431.44263143108,3839.3526341172,242.12133728667,46.561795632052,45.2314586139934,282.031447828429,3642.46275544452,188.907856564325,1587.09206254394,1962.24710163648,1833.20441088479,10.642696144469,421.716834724585,1102.8493879706,252.764033431139,158.310105148977,550.759525476272,210.193248853263,1621.68082501347,369.833691020299,1442.08532757555,74.4988730112832,6.65168509029314,105.096624426632,912.611194388219,413.734812616233,167.622464275387,90.4629172279867,89.1325802099281,9706.13888375575,39.9101105417588,1209.27634941529,485.573011591399,81.1505581015763,952.521304929978,29.2674143972898,5365.24919383045,109.087635480807,107.757298462749,2478.41786464322,15.9640442167035,2063.35271500893,601.3123321625,110.417972498866,10.642696144469,26.6067403611726,779.577492582356,252.764033431139,5273.4559395844,3.99101105417588,6381.62667562724,332.584254514657,5306.71436503587,862.058387701991,1302.3999406794,109.087635480807,21.285392288938,695.766260444662,969.81568616474,141.015723914215,73.1685359932245,513.51008897063,344.557287677185,417.725823670409,746.31906713089,822.148277160232,138.355049878097,33.2584254514657,6033.07837689588,6115.55927201551,61.1955028306969,1939.63137232948,142.346060932273,936.557260713274,1536.53925585772,216.844933943556,39.9101105417588,1120.14376920536,220.835944997732,3066.42682662514,246.112348340846,283.361784846488,424.377508760702,23.9460663250553,2180.42237259809,544.107840385979,361.851668911947,360.521331893888,24334.5247343284,496.215707735868,54.5438177404037,77.1595470474004,6474.75026689134,561.402221620741,1362.26510649204,9.3123591264104,75.8292100293418,1382.22016176291,8850.73218114405,333.914591532716,29.2674143972898,2973.30323536103,148.997746022566,1044.31455917602,375.155039092533,85.1415691557522,29399.1177620776,2068.67406308117,78.4898840654591,3595.90095981247,397.77076839953,47.8921326501106,62.5258398487555,1991.51451603377,291.34380695484,617.276376379203,61.1955028306969,476.260652464989,282.031447828429,102.435950390514,614.615702343086,944.539282821626,642.552779722317,299.325829063191,4781.23124290271,31.9280884334071,6.65168509029314,715.721315715542,546.768514422096,461.626945266344,1238.54376381258,7.98202210835177,31.9280884334071,457.635934212168,337.905602586892,1794.62463736109,835.451647340818,6.65168509029314,896.647150171515,1497.95948233402,118.399994607218,22.6157293069967,735.676370986421,6.65168509029314,222.166282015791,13.3033701805863,959.172990020271,2603.46954434073,876.692094900636,1825.22238877644,226.157293069967,1156.06286869295,787.559514690708,1027.02017794126,1130.78646534983,528.143796169275,465.61795632052,5222.90313289817,1315.70331085998,6.65168509029314,2365.33921810824,147.667409004508,211.523585871322,9342.95687782574,1070.9212995372,329.92358047854,2897.47402533169,4411.39755188241,3446.90321378991,1871.78418440849,41.2404475598175,645.213453758435,4114.73239685534,541.447166349862,164.96179023927,133.033701805863,752.970752221183,944.539282821626,90.4629172279867,2423.87404690282,266.067403611726,10.642696144469,2860.22458882605,832.790973304701,51.8831437042865,391.119083309237,376.485376110592,35.919099487583,977.797708273092,1302.3999406794,15.9640442167035,230.148304124143,1271.80218926405,2107.25383660487,615.946039361145,629.249409541731,4843.75708275146,240.791000268612,69.1775249390487,86.4719061738108,14.6337071986449,304.647177135426,2183.08304663421,411.074138580116,472.269641410813,2921.42009165675,280.70111081037,307.307851171543,1783.98194121662,199.550552708794,287.352795900664,682.462890264076,506.858403880337,1005.73478565232,50.5528066862279,502.867392826161,795.541536799059,336.575265568833,710.399967643307,266.067403611726,1297.07859260716,541.447166349862,15.9640442167035,744.988730112832,10.642696144469,29.2674143972898,1270.47185224599,14.6337071986449,1235.88308977647,2805.68077108565,333.914591532716,2885.50099216916,150.328083040625,236.799989214436,512.179751952572,7001.56372604256,1074.91231059137,38.5797735237002,102.435950390514,57.204491776521,212.85392288938,22.6157293069967,391.119083309237,2016.79091937688,191.568530600442,1701.50104609699,85.1415691557522,626.588735505614,134.364038823921,421.716834724585,384.467398218944,1173.35724992771,626.588735505614,570.714580747151,2959.99986518045,89.1325802099281,1230.56174170423,45.2314586139934,27.9370773792312,392.449420327295,321.941558370188,597.321321108324,348.548298731361,1238.54376381258,5.32134807223451,4766.59753570406,1698.84037206087,613.285365325028,663.838172011255,711.730304661366,1971.55946076289,621.267387433379,5877.42894578302,107.757298462749,43.9011215959347,347.217961713302,73.1685359932245,1125.4651172776,23.9460663250553,3320.52119707434,3683.70320300434,113.078646534983,931.23591264104,51.8831437042865,646.543790776493,2998.57963870415,1254.50780802929,1692.18868697057,7.98202210835177,4074.82228631358,10.642696144469,234.139315178319,1124.13478025954,39.9101105417588,783.568503636532,469.608967374696,991.101078453678,215.514596925498,1121.47410622342,3529.38410890954,1700.17070907893,1279.7842113724,710.399967643307,782.238166618473,657.186486920962,59.8651658126383,264.737066593667,1551.17296305636,5735.08288485075,186.247182528208,5633.97727147829,56258.6221566813,297.995492045133,9946.92988402436,176.934823401798,795.541536799059,4509.84249121875,803.523558907411,242.12133728667,22.6157293069967,826.139288214408,461.626945266344,12337.5455054757,123.721342679452,3.99101105417588,1434.1033054672,1386.21117281709,19434.8934968185,312.629199243778,2425.20438392088,6.65168509029314,2059.36170395476,2107.25383660487,1042.98422215796,1207.94601239723,1641.63588028435,2800.35942301341,25.2764033431139,1273.13252628211,77.1595470474004,387.128072255061,183.586508492091,113.078646534983,694.435923426604,42.5707845778761,13.3033701805863,332.584254514657,924.584227550747,55.8741547584624,51.8831437042865,210.193248853263,130.373027769746,15.9640442167035,9675.5411323404,6.65168509029314,691.775249390487,1197.30331625277,4194.55261793885,1358.27409543786,1117.48309516925,4453.96833646029,2759.11897545359,738.337045022539,43.9011215959347,29.2674143972898,4770.58854675824,1.33033701805863,69.1775249390487,3005.23132379444,39.9101105417588,61.1955028306969,416.395486652351,1830.54373684867,118.399994607218,9.3123591264104,323.271895388247,1548.51228902024,256.755044485315,1352.95274736562,3594.57062279441,10534.9388460063,105.096624426632,31.9280884334071,220.835944997732,393.779757345354,300.65616608125,200.880889726853,126.38201671557,1495.2988082979,347.217961713302,283.361784846488,1392.86285790738,5.32134807223451,2008.80889726853,30.5977514153484,784.89884065459,54.5438177404037,162.301116203153,2423.87404690282,3409.65377728426,85.1415691557522,21.285392288938,901.96849824375,457.635934212168,212.85392288938,429.698856832937,750.310078185066,5.32134807223451,1664.25160959134,75.8292100293418,133.033701805863,117.069657589159,1835.86508492091,5998.48961442635,145.00673496839,505.528066862279,85.1415691557522,3148.90772174477,617.276376379203,3426.94815851903,4475.25372874922,1627.0021730857,4146.66048528874,6962.98395251886,1726.7774494401,9577.09619300406,274.049425720077,621.267387433379,860.728050683932,45.2314586139934,103.766287408573,1999.49653814212,1254.50780802929,75.8292100293418,1169.36623887353,50.5528066862279,2213.68079804956,337.905602586892,299.325829063191,15.9640442167035,2426.53472093894,725.033674841952,2006.14822323241,6236.61994065885,183.586508492091,287.352795900664,164.96179023927,1520.57521164101,216.844933943556,17.2943812347622,1798.61564841527,23.9460663250553,49.2224696681692,77.1595470474004,2018.12125639494,1958.2560905823,7479.15471552561,101.105613372456,582.687613909679,2757.78863843554,2954.67851710821,977.797708273092,1027.02017794126,453.644923157992,85.1415691557522,320.611221352129,670.489857101549,1474.01341600896,878.022431918694,17.2943812347622,401.761779453706,3621.17736315559,529.474133187334,1843.84710702926,51.8831437042865,671.820194119607,6332.40420595907,2204.36843892315,1481.99543811731],"gene":["FBgn0000043","FBgn0000064","FBgn0000071","FBgn0000079","FBgn0000116","FBgn0000139","FBgn0000146","FBgn0000147","FBgn0000244","FBgn0000256","FBgn0000286","FBgn0000299","FBgn0000346","FBgn0000392","FBgn0000405","FBgn0000406","FBgn0000416","FBgn0000447","FBgn0000490","FBgn0000524","FBgn0000535","FBgn0000565","FBgn0000567","FBgn0000578","FBgn0000579","FBgn0000826","FBgn0000928","FBgn0001091","FBgn0001114","FBgn0001122","FBgn0001124","FBgn0001137","FBgn0001197","FBgn0001206","FBgn0001224","FBgn0001225","FBgn0001226","FBgn0001257","FBgn0001258","FBgn0001297","FBgn0001332","FBgn0001967","FBgn0001977","FBgn0002527","FBgn0002543","FBgn0002567","FBgn0002609","FBgn0002773","FBgn0002778","FBgn0002868","FBgn0002891","FBgn0002945","FBgn0003041","FBgn0003053","FBgn0003074","FBgn0003076","FBgn0003137","FBgn0003317","FBgn0003328","FBgn0003360","FBgn0003366","FBgn0003390","FBgn0003447","FBgn0003501","FBgn0003502","FBgn0003507","FBgn0003525","FBgn0003557","FBgn0003748","FBgn0003862","FBgn0003884","FBgn0003886","FBgn0003888","FBgn0003891","FBgn0003996","FBgn0004108","FBgn0004197","FBgn0004369","FBgn0004387","FBgn0004396","FBgn0004456","FBgn0004507","FBgn0004584","FBgn0004597","FBgn0004650","FBgn0004652","FBgn0004865","FBgn0004870","FBgn0004893","FBgn0005593","FBgn0005640","FBgn0005660","FBgn0005694","FBgn0008649","FBgn0010097","FBgn0010194","FBgn0010222","FBgn0010223","FBgn0010225","FBgn0010228","FBgn0010300","FBgn0010314","FBgn0010316","FBgn0010382","FBgn0010395","FBgn0010470","FBgn0010549","FBgn0010591","FBgn0010768","FBgn0010786","FBgn0010894","FBgn0011016","FBgn0011206","FBgn0011259","FBgn0011260","FBgn0011274","FBgn0011305","FBgn0011592","FBgn0011606","FBgn0011674","FBgn0011710","FBgn0011722","FBgn0011754","FBgn0011823","FBgn0012034","FBgn0013272","FBgn0013576","FBgn0013720","FBgn0013763","FBgn0013765","FBgn0013811","FBgn0013997","FBgn0014029","FBgn0014033","FBgn0014163","FBgn0014417","FBgn0014469","FBgn0014869","FBgn0014906","FBgn0015371","FBgn0015522","FBgn0015541","FBgn0015568","FBgn0015576","FBgn0015777","FBgn0015795","FBgn0015801","FBgn0015903","FBgn0016075","FBgn0016715","FBgn0016926","FBgn0017551","FBgn0020240","FBgn0020248","FBgn0020249","FBgn0020257","FBgn0020376","FBgn0020386","FBgn0020391","FBgn0020414","FBgn0020416","FBgn0020493","FBgn0020633","FBgn0020887","FBgn0021795","FBgn0022160","FBgn0022338","FBgn0022382","FBgn0022702","FBgn0023091","FBgn0023129","FBgn0023477","FBgn0023479","FBgn0023549","FBgn0024150","FBgn0024250","FBgn0024288","FBgn0024315","FBgn0024491","FBgn0024836","FBgn0024841","FBgn0024891","FBgn0024977","FBgn0024984","FBgn0025111","FBgn0025574","FBgn0025593","FBgn0025628","FBgn0025678","FBgn0025681","FBgn0025682","FBgn0025683","FBgn0025739","FBgn0025836","FBgn0025865","FBgn0026150","FBgn0026179","FBgn0026189","FBgn0026319","FBgn0026376","FBgn0026380","FBgn0026415","FBgn0026439","FBgn0026562","FBgn0026576","FBgn0026585","FBgn0026721","FBgn0026760","FBgn0027091","FBgn0027279","FBgn0027348","FBgn0027515","FBgn0027525","FBgn0027552","FBgn0027561","FBgn0027578","FBgn0027580","FBgn0027590","FBgn0027594","FBgn0027596","FBgn0027597","FBgn0027657","FBgn0027836","FBgn0027843","FBgn0027865","FBgn0027949","FBgn0028327","FBgn0028331","FBgn0028373","FBgn0028394","FBgn0028397","FBgn0028433","FBgn0028434","FBgn0028473","FBgn0028490","FBgn0028491","FBgn0028514","FBgn0028540","FBgn0028542","FBgn0028543","FBgn0028563","FBgn0028939","FBgn0028990","FBgn0029002","FBgn0029090","FBgn0029092","FBgn0029095","FBgn0029114","FBgn0029147","FBgn0029167","FBgn0029608","FBgn0029664","FBgn0029801","FBgn0029861","FBgn0029881","FBgn0029896","FBgn0029970","FBgn0029975","FBgn0030037","FBgn0030041","FBgn0030051","FBgn0030090","FBgn0030145","FBgn0030237","FBgn0030305","FBgn0030318","FBgn0030322","FBgn0030326","FBgn0030343","FBgn0030349","FBgn0030361","FBgn0030362","FBgn0030412","FBgn0030452","FBgn0030482","FBgn0030485","FBgn0030529","FBgn0030576","FBgn0030588","FBgn0030598","FBgn0030612","FBgn0030634","FBgn0030662","FBgn0030672","FBgn0030752","FBgn0030805","FBgn0030839","FBgn0030884","FBgn0030954","FBgn0030960","FBgn0030966","FBgn0031012","FBgn0031018","FBgn0031047","FBgn0031049","FBgn0031055","FBgn0031070","FBgn0031117","FBgn0031126","FBgn0031148","FBgn0031150","FBgn0031170","FBgn0031245","FBgn0031258","FBgn0031261","FBgn0031263","FBgn0031268","FBgn0031285","FBgn0031307","FBgn0031313","FBgn0031322","FBgn0031327","FBgn0031359","FBgn0031374","FBgn0031449","FBgn0031461","FBgn0031464","FBgn0031489","FBgn0031516","FBgn0031538","FBgn0031540","FBgn0031547","FBgn0031548","FBgn0031637","FBgn0031688","FBgn0031689","FBgn0031703","FBgn0031738","FBgn0031752","FBgn0031769","FBgn0031805","FBgn0031816","FBgn0031872","FBgn0031888","FBgn0031912","FBgn0031913","FBgn0031914","FBgn0031952","FBgn0031968","FBgn0031988","FBgn0032004","FBgn0032005","FBgn0032026","FBgn0032029","FBgn0032036","FBgn0032078","FBgn0032105","FBgn0032140","FBgn0032156","FBgn0032330","FBgn0032400","FBgn0032405","FBgn0032409","FBgn0032420","FBgn0032421","FBgn0032422","FBgn0032436","FBgn0032451","FBgn0032482","FBgn0032498","FBgn0032533","FBgn0032598","FBgn0032601","FBgn0032635","FBgn0032638","FBgn0032698","FBgn0032699","FBgn0032775","FBgn0032785","FBgn0032808","FBgn0032810","FBgn0032820","FBgn0032859","FBgn0032881","FBgn0032899","FBgn0032956","FBgn0033033","FBgn0033065","FBgn0033079","FBgn0033095","FBgn0033113","FBgn0033115","FBgn0033128","FBgn0033153","FBgn0033188","FBgn0033204","FBgn0033205","FBgn0033268","FBgn0033288","FBgn0033292","FBgn0033302","FBgn0033359","FBgn0033362","FBgn0033363","FBgn0033364","FBgn0033367","FBgn0033368","FBgn0033402","FBgn0033426","FBgn0033446","FBgn0033448","FBgn0033458","FBgn0033483","FBgn0033495","FBgn0033502","FBgn0033504","FBgn0033541","FBgn0033635","FBgn0033649","FBgn0033724","FBgn0033764","FBgn0033775","FBgn0033777","FBgn0033782","FBgn0033844","FBgn0033857","FBgn0033913","FBgn0033924","FBgn0033926","FBgn0034010","FBgn0034013","FBgn0034067","FBgn0034139","FBgn0034142","FBgn0034219","FBgn0034221","FBgn0034225","FBgn0034249","FBgn0034354","FBgn0034365","FBgn0034376","FBgn0034378","FBgn0034389","FBgn0034391","FBgn0034398","FBgn0034400","FBgn0034403","FBgn0034405","FBgn0034408","FBgn0034418","FBgn0034432","FBgn0034434","FBgn0034438","FBgn0034447","FBgn0034476","FBgn0034501","FBgn0034523","FBgn0034564","FBgn0034603","FBgn0034636","FBgn0034638","FBgn0034694","FBgn0034718","FBgn0034736","FBgn0034751","FBgn0034793","FBgn0034804","FBgn0034885","FBgn0034886","FBgn0034894","FBgn0034897","FBgn0034898","FBgn0034950","FBgn0034970","FBgn0035001","FBgn0035020","FBgn0035076","FBgn0035083","FBgn0035084","FBgn0035085","FBgn0035091","FBgn0035113","FBgn0035147","FBgn0035150","FBgn0035154","FBgn0035165","FBgn0035173","FBgn0035189","FBgn0035231","FBgn0035232","FBgn0035266","FBgn0035285","FBgn0035287","FBgn0035295","FBgn0035312","FBgn0035344","FBgn0035347","FBgn0035390","FBgn0035403","FBgn0035496","FBgn0035500","FBgn0035523","FBgn0035539","FBgn0035542","FBgn0035603","FBgn0035644","FBgn0035708","FBgn0035710","FBgn0035727","FBgn0035761","FBgn0035765","FBgn0035766","FBgn0035769","FBgn0035789","FBgn0035811","FBgn0035879","FBgn0035903","FBgn0035932","FBgn0035937","FBgn0035957","FBgn0035968","FBgn0035969","FBgn0036007","FBgn0036053","FBgn0036059","FBgn0036147","FBgn0036196","FBgn0036257","FBgn0036272","FBgn0036279","FBgn0036290","FBgn0036299","FBgn0036317","FBgn0036373","FBgn0036449","FBgn0036560","FBgn0036576","FBgn0036616","FBgn0036641","FBgn0036663","FBgn0036684","FBgn0036688","FBgn0036732","FBgn0036752","FBgn0036764","FBgn0036770","FBgn0036801","FBgn0036821","FBgn0036824","FBgn0036857","FBgn0036862","FBgn0036893","FBgn0036896","FBgn0036968","FBgn0036984","FBgn0036985","FBgn0037028","FBgn0037046","FBgn0037074","FBgn0037116","FBgn0037153","FBgn0037213","FBgn0037222","FBgn0037223","FBgn0037239","FBgn0037240","FBgn0037290","FBgn0037369","FBgn0037445","FBgn0037468","FBgn0037539","FBgn0037554","FBgn0037607","FBgn0037635","FBgn0037646","FBgn0037672","FBgn0037678","FBgn0037680","FBgn0037683","FBgn0037705","FBgn0037717","FBgn0037718","FBgn0037739","FBgn0037754","FBgn0037760","FBgn0037844","FBgn0037850","FBgn0037852","FBgn0037872","FBgn0037884","FBgn0037896","FBgn0037901","FBgn0037917","FBgn0038043","FBgn0038049","FBgn0038088","FBgn0038107","FBgn0038118","FBgn0038143","FBgn0038149","FBgn0038198","FBgn0038237","FBgn0038256","FBgn0038261","FBgn0038290","FBgn0038293","FBgn0038341","FBgn0038347","FBgn0038351","FBgn0038381","FBgn0038436","FBgn0038465","FBgn0038476","FBgn0038484","FBgn0038528","FBgn0038545","FBgn0038595","FBgn0038603","FBgn0038608","FBgn0038660","FBgn0038720","FBgn0038745","FBgn0038804","FBgn0038805","FBgn0038815","FBgn0038832","FBgn0038865","FBgn0038877","FBgn0038912","FBgn0039000","FBgn0039026","FBgn0039060","FBgn0039061","FBgn0039069","FBgn0039094","FBgn0039098","FBgn0039101","FBgn0039109","FBgn0039113","FBgn0039155","FBgn0039178","FBgn0039208","FBgn0039209","FBgn0039257","FBgn0039381","FBgn0039385","FBgn0039419","FBgn0039464","FBgn0039467","FBgn0039479","FBgn0039485","FBgn0039525","FBgn0039538","FBgn0039590","FBgn0039593","FBgn0039613","FBgn0039637","FBgn0039640","FBgn0039644","FBgn0039651","FBgn0039696","FBgn0039714","FBgn0039735","FBgn0039756","FBgn0039759","FBgn0039776","FBgn0039788","FBgn0039797","FBgn0039804","FBgn0039808","FBgn0039809","FBgn0039827","FBgn0039874","FBgn0039876","FBgn0039886","FBgn0040070","FBgn0040091","FBgn0040099","FBgn0040271","FBgn0040290","FBgn0040308","FBgn0040373","FBgn0040384","FBgn0040388","FBgn0040398","FBgn0040477","FBgn0040752","FBgn0040813","FBgn0040827","FBgn0041180","FBgn0041183","FBgn0041191","FBgn0041342","FBgn0041588","FBgn0041604","FBgn0041605","FBgn0041607","FBgn0041627","FBgn0041629","FBgn0042094","FBgn0042102","FBgn0043362","FBgn0043364","FBgn0043841","FBgn0044047","FBgn0045852","FBgn0046258","FBgn0046687","FBgn0046763","FBgn0050035","FBgn0050046","FBgn0050069","FBgn0050085","FBgn0050088","FBgn0050147","FBgn0050148","FBgn0050185","FBgn0050269","FBgn0050273","FBgn0050344","FBgn0050359","FBgn0050463","FBgn0051005","FBgn0051038","FBgn0051082","FBgn0051092","FBgn0051098","FBgn0051116","FBgn0051125","FBgn0051150","FBgn0051163","FBgn0051195","FBgn0051216","FBgn0051314","FBgn0051337","FBgn0051361","FBgn0051363","FBgn0051431","FBgn0051453","FBgn0051462","FBgn0051477","FBgn0051523","FBgn0051555","FBgn0051614","FBgn0051637","FBgn0051642","FBgn0051856","FBgn0052021","FBgn0052133","FBgn0052135","FBgn0052185","FBgn0052280","FBgn0052311","FBgn0052407","FBgn0052412","FBgn0052521","FBgn0052529","FBgn0052625","FBgn0052677","FBgn0052681","FBgn0052687","FBgn0052803","FBgn0052813","FBgn0053007","FBgn0053138","FBgn0053181","FBgn0053193","FBgn0053307","FBgn0053346","FBgn0053460","FBgn0053508","FBgn0053516","FBgn0053555","FBgn0053556","FBgn0053558","FBgn0053967","FBgn0054056","FBgn0062978","FBgn0063491","FBgn0063492","FBgn0063493","FBgn0063498","FBgn0063649","FBgn0063667","FBgn0083959","FBgn0085334","FBgn0085354","FBgn0085359","FBgn0085388","FBgn0085402","FBgn0085403","FBgn0085434","FBgn0085438","FBgn0085446","FBgn0086253","FBgn0086355","FBgn0086357","FBgn0086358","FBgn0086365","FBgn0086450","FBgn0086674","FBgn0086687","FBgn0086708","FBgn0086757","FBgn0086906","FBgn0086910","FBgn0087007","FBgn0243512","FBgn0250732","FBgn0250757","FBgn0250785","FBgn0250829","FBgn0250837","FBgn0250867","FBgn0250876","FBgn0250904","FBgn0250906","FBgn0259110","FBgn0259111","FBgn0259217","FBgn0259224","FBgn0259246","FBgn0259714","FBgn0259715","FBgn0259734","FBgn0259741","FBgn0259749","FBgn0259935","FBgn0260011","FBgn0260429","FBgn0260486","FBgn0260632","FBgn0260745","FBgn0260768","FBgn0260933","FBgn0260936","FBgn0260960","FBgn0260966","FBgn0260992","FBgn0261015","FBgn0261053","FBgn0261109","FBgn0261238","FBgn0261258","FBgn0261278","FBgn0261284","FBgn0261285","FBgn0261362","FBgn0261444","FBgn0261545","FBgn0261546","FBgn0261547","FBgn0261552","FBgn0261560","FBgn0261563"]},"annotation":{"condition":["treated","treated","treated","untreated","untreated","untreated","untreated"],"type":["single-read","paired-end","paired-end","single-read","single-read","paired-end","paired-end"],"interaction":["treated:single-read","treated:paired-end","treated:paired-end","untreated:single-read","untreated:single-read","untreated:paired-end","untreated:paired-end"],"sampleID":["treated1","treated2","treated3","untreated1","untreated2","untreated3","untreated4"]},"targetCol":"gene","sampleCol":"sampleID","plotName":"ContrApption","yAxisName":"Expression","showLegend":false,"scaleWidth":0.5,"usingCrosstalk":true,"mode":"diff-expression","settings":{"crosstalk_key":["FBgn0000043","FBgn0000064","FBgn0000071","FBgn0000079","FBgn0000116","FBgn0000139","FBgn0000146","FBgn0000147","FBgn0000244","FBgn0000256","FBgn0000286","FBgn0000299","FBgn0000346","FBgn0000392","FBgn0000405","FBgn0000406","FBgn0000416","FBgn0000447","FBgn0000490","FBgn0000524","FBgn0000535","FBgn0000565","FBgn0000567","FBgn0000578","FBgn0000579","FBgn0000826","FBgn0000928","FBgn0001091","FBgn0001114","FBgn0001122","FBgn0001124","FBgn0001137","FBgn0001197","FBgn0001206","FBgn0001224","FBgn0001225","FBgn0001226","FBgn0001257","FBgn0001258","FBgn0001297","FBgn0001332","FBgn0001967","FBgn0001977","FBgn0002527","FBgn0002543","FBgn0002567","FBgn0002609","FBgn0002773","FBgn0002778","FBgn0002868","FBgn0002891","FBgn0002945","FBgn0003041","FBgn0003053","FBgn0003074","FBgn0003076","FBgn0003137","FBgn0003317","FBgn0003328","FBgn0003360","FBgn0003366","FBgn0003390","FBgn0003447","FBgn0003501","FBgn0003502","FBgn0003507","FBgn0003525","FBgn0003557","FBgn0003748","FBgn0003862","FBgn0003884","FBgn0003886","FBgn0003888","FBgn0003891","FBgn0003996","FBgn0004108","FBgn0004197","FBgn0004369","FBgn0004387","FBgn0004396","FBgn0004456","FBgn0004507","FBgn0004584","FBgn0004597","FBgn0004650","FBgn0004652","FBgn0004865","FBgn0004870","FBgn0004893","FBgn0005593","FBgn0005640","FBgn0005660","FBgn0005694","FBgn0008649","FBgn0010097","FBgn0010194","FBgn0010222","FBgn0010223","FBgn0010225","FBgn0010228","FBgn0010300","FBgn0010314","FBgn0010316","FBgn0010382","FBgn0010395","FBgn0010470","FBgn0010549","FBgn0010591","FBgn0010768","FBgn0010786","FBgn0010894","FBgn0011016","FBgn0011206","FBgn0011259","FBgn0011260","FBgn0011274","FBgn0011305","FBgn0011592","FBgn0011606","FBgn0011674","FBgn0011710","FBgn0011722","FBgn0011754","FBgn0011823","FBgn0012034","FBgn0013272","FBgn0013576","FBgn0013720","FBgn0013763","FBgn0013765","FBgn0013811","FBgn0013997","FBgn0014029","FBgn0014033","FBgn0014163","FBgn0014417","FBgn0014469","FBgn0014869","FBgn0014906","FBgn0015371","FBgn0015522","FBgn0015541","FBgn0015568","FBgn0015576","FBgn0015777","FBgn0015795","FBgn0015801","FBgn0015903","FBgn0016075","FBgn0016715","FBgn0016926","FBgn0017551","FBgn0020240","FBgn0020248","FBgn0020249","FBgn0020257","FBgn0020376","FBgn0020386","FBgn0020391","FBgn0020414","FBgn0020416","FBgn0020493","FBgn0020633","FBgn0020887","FBgn0021795","FBgn0022160","FBgn0022338","FBgn0022382","FBgn0022702","FBgn0023091","FBgn0023129","FBgn0023477","FBgn0023479","FBgn0023549","FBgn0024150","FBgn0024250","FBgn0024288","FBgn0024315","FBgn0024491","FBgn0024836","FBgn0024841","FBgn0024891","FBgn0024977","FBgn0024984","FBgn0025111","FBgn0025574","FBgn0025593","FBgn0025628","FBgn0025678","FBgn0025681","FBgn0025682","FBgn0025683","FBgn0025739","FBgn0025836","FBgn0025865","FBgn0026150","FBgn0026179","FBgn0026189","FBgn0026319","FBgn0026376","FBgn0026380","FBgn0026415","FBgn0026439","FBgn0026562","FBgn0026576","FBgn0026585","FBgn0026721","FBgn0026760","FBgn0027091","FBgn0027279","FBgn0027348","FBgn0027515","FBgn0027525","FBgn0027552","FBgn0027561","FBgn0027578","FBgn0027580","FBgn0027590","FBgn0027594","FBgn0027596","FBgn0027597","FBgn0027657","FBgn0027836","FBgn0027843","FBgn0027865","FBgn0027949","FBgn0028327","FBgn0028331","FBgn0028373","FBgn0028394","FBgn0028397","FBgn0028433","FBgn0028434","FBgn0028473","FBgn0028490","FBgn0028491","FBgn0028514","FBgn0028540","FBgn0028542","FBgn0028543","FBgn0028563","FBgn0028939","FBgn0028990","FBgn0029002","FBgn0029090","FBgn0029092","FBgn0029095","FBgn0029114","FBgn0029147","FBgn0029167","FBgn0029608","FBgn0029664","FBgn0029801","FBgn0029861","FBgn0029881","FBgn0029896","FBgn0029970","FBgn0029975","FBgn0030037","FBgn0030041","FBgn0030051","FBgn0030090","FBgn0030145","FBgn0030237","FBgn0030305","FBgn0030318","FBgn0030322","FBgn0030326","FBgn0030343","FBgn0030349","FBgn0030361","FBgn0030362","FBgn0030412","FBgn0030452","FBgn0030482","FBgn0030485","FBgn0030529","FBgn0030576","FBgn0030588","FBgn0030598","FBgn0030612","FBgn0030634","FBgn0030662","FBgn0030672","FBgn0030752","FBgn0030805","FBgn0030839","FBgn0030884","FBgn0030954","FBgn0030960","FBgn0030966","FBgn0031012","FBgn0031018","FBgn0031047","FBgn0031049","FBgn0031055","FBgn0031070","FBgn0031117","FBgn0031126","FBgn0031148","FBgn0031150","FBgn0031170","FBgn0031245","FBgn0031258","FBgn0031261","FBgn0031263","FBgn0031268","FBgn0031285","FBgn0031307","FBgn0031313","FBgn0031322","FBgn0031327","FBgn0031359","FBgn0031374","FBgn0031449","FBgn0031461","FBgn0031464","FBgn0031489","FBgn0031516","FBgn0031538","FBgn0031540","FBgn0031547","FBgn0031548","FBgn0031637","FBgn0031688","FBgn0031689","FBgn0031703","FBgn0031738","FBgn0031752","FBgn0031769","FBgn0031805","FBgn0031816","FBgn0031872","FBgn0031888","FBgn0031912","FBgn0031913","FBgn0031914","FBgn0031952","FBgn0031968","FBgn0031988","FBgn0032004","FBgn0032005","FBgn0032026","FBgn0032029","FBgn0032036","FBgn0032078","FBgn0032105","FBgn0032140","FBgn0032156","FBgn0032330","FBgn0032400","FBgn0032405","FBgn0032409","FBgn0032420","FBgn0032421","FBgn0032422","FBgn0032436","FBgn0032451","FBgn0032482","FBgn0032498","FBgn0032533","FBgn0032598","FBgn0032601","FBgn0032635","FBgn0032638","FBgn0032698","FBgn0032699","FBgn0032775","FBgn0032785","FBgn0032808","FBgn0032810","FBgn0032820","FBgn0032859","FBgn0032881","FBgn0032899","FBgn0032956","FBgn0033033","FBgn0033065","FBgn0033079","FBgn0033095","FBgn0033113","FBgn0033115","FBgn0033128","FBgn0033153","FBgn0033188","FBgn0033204","FBgn0033205","FBgn0033268","FBgn0033288","FBgn0033292","FBgn0033302","FBgn0033359","FBgn0033362","FBgn0033363","FBgn0033364","FBgn0033367","FBgn0033368","FBgn0033402","FBgn0033426","FBgn0033446","FBgn0033448","FBgn0033458","FBgn0033483","FBgn0033495","FBgn0033502","FBgn0033504","FBgn0033541","FBgn0033635","FBgn0033649","FBgn0033724","FBgn0033764","FBgn0033775","FBgn0033777","FBgn0033782","FBgn0033844","FBgn0033857","FBgn0033913","FBgn0033924","FBgn0033926","FBgn0034010","FBgn0034013","FBgn0034067","FBgn0034139","FBgn0034142","FBgn0034219","FBgn0034221","FBgn0034225","FBgn0034249","FBgn0034354","FBgn0034365","FBgn0034376","FBgn0034378","FBgn0034389","FBgn0034391","FBgn0034398","FBgn0034400","FBgn0034403","FBgn0034405","FBgn0034408","FBgn0034418","FBgn0034432","FBgn0034434","FBgn0034438","FBgn0034447","FBgn0034476","FBgn0034501","FBgn0034523","FBgn0034564","FBgn0034603","FBgn0034636","FBgn0034638","FBgn0034694","FBgn0034718","FBgn0034736","FBgn0034751","FBgn0034793","FBgn0034804","FBgn0034885","FBgn0034886","FBgn0034894","FBgn0034897","FBgn0034898","FBgn0034950","FBgn0034970","FBgn0035001","FBgn0035020","FBgn0035076","FBgn0035083","FBgn0035084","FBgn0035085","FBgn0035091","FBgn0035113","FBgn0035147","FBgn0035150","FBgn0035154","FBgn0035165","FBgn0035173","FBgn0035189","FBgn0035231","FBgn0035232","FBgn0035266","FBgn0035285","FBgn0035287","FBgn0035295","FBgn0035312","FBgn0035344","FBgn0035347","FBgn0035390","FBgn0035403","FBgn0035496","FBgn0035500","FBgn0035523","FBgn0035539","FBgn0035542","FBgn0035603","FBgn0035644","FBgn0035708","FBgn0035710","FBgn0035727","FBgn0035761","FBgn0035765","FBgn0035766","FBgn0035769","FBgn0035789","FBgn0035811","FBgn0035879","FBgn0035903","FBgn0035932","FBgn0035937","FBgn0035957","FBgn0035968","FBgn0035969","FBgn0036007","FBgn0036053","FBgn0036059","FBgn0036147","FBgn0036196","FBgn0036257","FBgn0036272","FBgn0036279","FBgn0036290","FBgn0036299","FBgn0036317","FBgn0036373","FBgn0036449","FBgn0036560","FBgn0036576","FBgn0036616","FBgn0036641","FBgn0036663","FBgn0036684","FBgn0036688","FBgn0036732","FBgn0036752","FBgn0036764","FBgn0036770","FBgn0036801","FBgn0036821","FBgn0036824","FBgn0036857","FBgn0036862","FBgn0036893","FBgn0036896","FBgn0036968","FBgn0036984","FBgn0036985","FBgn0037028","FBgn0037046","FBgn0037074","FBgn0037116","FBgn0037153","FBgn0037213","FBgn0037222","FBgn0037223","FBgn0037239","FBgn0037240","FBgn0037290","FBgn0037369","FBgn0037445","FBgn0037468","FBgn0037539","FBgn0037554","FBgn0037607","FBgn0037635","FBgn0037646","FBgn0037672","FBgn0037678","FBgn0037680","FBgn0037683","FBgn0037705","FBgn0037717","FBgn0037718","FBgn0037739","FBgn0037754","FBgn0037760","FBgn0037844","FBgn0037850","FBgn0037852","FBgn0037872","FBgn0037884","FBgn0037896","FBgn0037901","FBgn0037917","FBgn0038043","FBgn0038049","FBgn0038088","FBgn0038107","FBgn0038118","FBgn0038143","FBgn0038149","FBgn0038198","FBgn0038237","FBgn0038256","FBgn0038261","FBgn0038290","FBgn0038293","FBgn0038341","FBgn0038347","FBgn0038351","FBgn0038381","FBgn0038436","FBgn0038465","FBgn0038476","FBgn0038484","FBgn0038528","FBgn0038545","FBgn0038595","FBgn0038603","FBgn0038608","FBgn0038660","FBgn0038720","FBgn0038745","FBgn0038804","FBgn0038805","FBgn0038815","FBgn0038832","FBgn0038865","FBgn0038877","FBgn0038912","FBgn0039000","FBgn0039026","FBgn0039060","FBgn0039061","FBgn0039069","FBgn0039094","FBgn0039098","FBgn0039101","FBgn0039109","FBgn0039113","FBgn0039155","FBgn0039178","FBgn0039208","FBgn0039209","FBgn0039257","FBgn0039381","FBgn0039385","FBgn0039419","FBgn0039464","FBgn0039467","FBgn0039479","FBgn0039485","FBgn0039525","FBgn0039538","FBgn0039590","FBgn0039593","FBgn0039613","FBgn0039637","FBgn0039640","FBgn0039644","FBgn0039651","FBgn0039696","FBgn0039714","FBgn0039735","FBgn0039756","FBgn0039759","FBgn0039776","FBgn0039788","FBgn0039797","FBgn0039804","FBgn0039808","FBgn0039809","FBgn0039827","FBgn0039874","FBgn0039876","FBgn0039886","FBgn0040070","FBgn0040091","FBgn0040099","FBgn0040271","FBgn0040290","FBgn0040308","FBgn0040373","FBgn0040384","FBgn0040388","FBgn0040398","FBgn0040477","FBgn0040752","FBgn0040813","FBgn0040827","FBgn0041180","FBgn0041183","FBgn0041191","FBgn0041342","FBgn0041588","FBgn0041604","FBgn0041605","FBgn0041607","FBgn0041627","FBgn0041629","FBgn0042094","FBgn0042102","FBgn0043362","FBgn0043364","FBgn0043841","FBgn0044047","FBgn0045852","FBgn0046258","FBgn0046687","FBgn0046763","FBgn0050035","FBgn0050046","FBgn0050069","FBgn0050085","FBgn0050088","FBgn0050147","FBgn0050148","FBgn0050185","FBgn0050269","FBgn0050273","FBgn0050344","FBgn0050359","FBgn0050463","FBgn0051005","FBgn0051038","FBgn0051082","FBgn0051092","FBgn0051098","FBgn0051116","FBgn0051125","FBgn0051150","FBgn0051163","FBgn0051195","FBgn0051216","FBgn0051314","FBgn0051337","FBgn0051361","FBgn0051363","FBgn0051431","FBgn0051453","FBgn0051462","FBgn0051477","FBgn0051523","FBgn0051555","FBgn0051614","FBgn0051637","FBgn0051642","FBgn0051856","FBgn0052021","FBgn0052133","FBgn0052135","FBgn0052185","FBgn0052280","FBgn0052311","FBgn0052407","FBgn0052412","FBgn0052521","FBgn0052529","FBgn0052625","FBgn0052677","FBgn0052681","FBgn0052687","FBgn0052803","FBgn0052813","FBgn0053007","FBgn0053138","FBgn0053181","FBgn0053193","FBgn0053307","FBgn0053346","FBgn0053460","FBgn0053508","FBgn0053516","FBgn0053555","FBgn0053556","FBgn0053558","FBgn0053967","FBgn0054056","FBgn0062978","FBgn0063491","FBgn0063492","FBgn0063493","FBgn0063498","FBgn0063649","FBgn0063667","FBgn0083959","FBgn0085334","FBgn0085354","FBgn0085359","FBgn0085388","FBgn0085402","FBgn0085403","FBgn0085434","FBgn0085438","FBgn0085446","FBgn0086253","FBgn0086355","FBgn0086357","FBgn0086358","FBgn0086365","FBgn0086450","FBgn0086674","FBgn0086687","FBgn0086708","FBgn0086757","FBgn0086906","FBgn0086910","FBgn0087007","FBgn0243512","FBgn0250732","FBgn0250757","FBgn0250785","FBgn0250829","FBgn0250837","FBgn0250867","FBgn0250876","FBgn0250904","FBgn0250906","FBgn0259110","FBgn0259111","FBgn0259217","FBgn0259224","FBgn0259246","FBgn0259714","FBgn0259715","FBgn0259734","FBgn0259741","FBgn0259749","FBgn0259935","FBgn0260011","FBgn0260429","FBgn0260486","FBgn0260632","FBgn0260745","FBgn0260768","FBgn0260933","FBgn0260936","FBgn0260960","FBgn0260966","FBgn0260992","FBgn0261015","FBgn0261053","FBgn0261109","FBgn0261238","FBgn0261258","FBgn0261278","FBgn0261284","FBgn0261285","FBgn0261362","FBgn0261444","FBgn0261545","FBgn0261546","FBgn0261547","FBgn0261552","FBgn0261560","FBgn0261563"],"crosstalk_group":"SharedData99a40067"}},"evals":[],"jsHooks":[]}</script> </div> </div> </div> </div> </div> </div> <div id="advanced-usage" class="section level2"> <h2>Advanced usage</h2> <p>This section of the vignette demonstrates the methods used in the <code>ContrApption</code> internals to leverage <code>datatables</code> for users interested in creating customized widgets.</p> <div id="customizing-the-table" class="section level3"> <h3>Customizing the table</h3> <p>Users interested in customizing the paired widgets are encouraged to visit the documentation for <a href="https://rstudio.github.io/DT/">DT</a> and <a href="https://www.datatables.net/">DataTables</a>, the JavaScript library it wraps, to learn to of the numerous options it provides and how they can be passed to <code>crosstalk</code> for use with <code>ContrApption</code>. A full tutorial on customized the table is beyond the scope of this document, however useres should be aware of the options available to them through <code>DT</code> and how those are passed to <code>ContrApption</code>.</p> <div id="counts-1" class="section level4"> <h4>Counts</h4> <p>This block demonstrates how different components of <code>createContrApption</code> function work. A customized <code>datatables</code> widget is made, and passed to <code>crosstalk</code>’s <code>bscols</code> function along with a <code>ContrApption</code> widget to create a pair.</p> <pre class="r"><code># first up, a fairly extensively customized datatables object dtCountsWidget <- datatable( normCountsSigShared, # Our shared data extensions = "Scroller", # Various tweaks to the table described in the DT docs style = "bootstrap", class = "compact", width = "100%", selection = 'single', # ContrApption works on one transcript at at time, we we only need one # This is a list of options that are passed to the DataTables, described in the DataTables docs options = list( deferRender = TRUE, scroller = TRUE, scrollY = 300, sScrollX = "100%", pagingType = "simple", # This option allows the user to pass raw, arbitrary JavaScript to be executed when the table # is rendered. proceed with caution. initComplete = JS( "function(settings, json) {", "\)(this.api().table().header()).css({'font-size': '75%'});”, "}" ) ) # This is a convenience function to add style tweaks to the table. In this case, # the fontsize of columns is changed on columns listed by number (all of them here) ) %>% formatStyle(columns = seq(1, ncol(normCountsSigShared$origData())), fontSize = '75%')
ContrApption, used in a fairly basic way, scaled down 50%
cntrCountsWidget <- ContrApption( data = normCountsSigShared, annotation = coldata, scaleWidth = 0.5 # makes room for other widgets, )
creates a side-by-side pair of widgets using bscols
createContrApptionsCounts <- bscols(dtCountsWidget, cntrCountsWidget)
createContrApptionsCounts
Differential expression
This example show the same as above, with minor modification to incorporate differential expression results. Most notable, the shared object is created from the expression data, and counts are passed as supplemental information using the counts argument. This can be achieved by creating a shared data object from the results table and passing "diff-expression" to the mode argument of ContrApption. This disables the dropdown for the target column in ContrApption as it is no longer needed when the user has a searchable table.
# create a datatables widget
dtDEwidget <- datatable(
resShared,
extensions = "Scroller",
style = "bootstrap",
class = "compact",
width = "100%",
selection = 'single',
options = list(
deferRender = TRUE,
scroller = TRUE,
scrollY = 300,
sScrollX = "100%",
pagingType = "simple",
initComplete = JS(
"function(settings, json) {",
"$(this.api().table().header()).css({'font-size': '75%'});",
"}"
)
)
) %>% formatStyle(columns = seq(1, ncol(resShared$origData())), fontSize = '75%')
# create a ContrApption widget
cDEwidget <- ContrApption(
data = resShared,
countsData = normCountsSig,
annotation = coldata,
mode = "diff-expression",
scaleWidth = 0.5
)
createContrApptionsDE <- bscols(dtDEwidget, cDEwidget)
createContrApptionsDE
Misc
This section demonstrates additional examples in slightly different contexts and the use of accesory arguments.
Example with limma-voom results
This section shows a basic limma-voom differential expression analysis the ends in exploration of the results using ContrApption.
Basic
We conduct a basic limma-voom analysis:
# the experimental design matrix
design <- model.matrix(~1 + condition, coldata)
# edgeR differential expression list
dge <- DGEList(counts = as.matrix(cts))
# created index of non-expressed for filtration
toKeep <- filterByExpr(dge, design)
# filter out non-expressed
dge <- dge[toKeep, keep.lib.sizes = FALSE]
# calc normnalization factors
dge <- calcNormFactors(dge)
# add voom adjustment
voomObj <- voom(dge, design, plot = FALSE)
# fit the model
fit <- lmFit(voomObj, design)
# calculate tests statistics
fit <- eBayes(fit)
# return the results
resLV <- topTable(fit, n = Inf, coef = NULL) %>% filter(adj.P.Val < 0.05) %>%
format(digits = 2)
## Removing intercept from test coefficients
# "normalized counts" https://support.bioconductor.org/p/103747/#103769
normCountsLV <- cpm(dge, log = TRUE, prior.count = 3) %>%
format(digits = 2)
normCountsSigLV <- normCountsLV %>%
data.frame %>%
dplyr::filter(rownames(.) %in% rownames(resLV))
We pass the results to ContrApption:
ContrApption(data = normCountsSigLV, annotation = coldata)
Interactive counts
An example with the interactive counts, customized explicitly:
normCountsSigLV$gene <- rownames(normCountsSigLV)
normCountsSigLVShared <- SharedData$new(normCountsSigLV)
dtDEwidgetLV <- datatable(
normCountsSigLVShared,
extensions = "Scroller",
style = "bootstrap",
class = "compact",
width = "100%",
selection = 'single',
options = list(
deferRender = TRUE,
scroller = TRUE,
scrollY = 300,
sScrollX = "100%",
pagingType = "simple",
initComplete = JS(
"function(settings, json) {",
"$(this.api().table().header()).css({'font-size': '75%'});",
"}"
)
)
) %>% formatStyle(columns = seq(1, ncol(normCountsSigLVShared$origData())), fontSize = '75%')
cntrDEwidgetLV <- ContrApption(
data = normCountsSigLVShared, # new shared results
annotation = coldata,
scaleWidth = 0.5
)
createContrApptionsDELV <- bscols(dtDEwidgetLV, cntrDEwidgetLV)
createContrApptionsDELV
Differential expression
An example with the interactive differential expression, customized explicitly:
resLVShared <- SharedData$new(resLV)
dDiffExWidgetLV <- datatable(
resLVShared,
extensions = "Scroller",
style = "bootstrap",
class = "compact",
width = "100%",
selection = 'single',
options = list(
deferRender = TRUE,
scroller = TRUE,
scrollY = 300,
sScrollX = "100%",
pagingType = "simple",
initComplete = JS(
"function(settings, json) {",
"$(this.api().table().header()).css({'font-size': '75%'});",
"}"
)
)
) %>% formatStyle(columns = seq(1, ncol(resLVShared$origData())), fontSize = '75%')
cntrDiffExWidgetLV <- ContrApption(
data = resLVShared,
countsData = normCountsSigLV,
annotation = coldata,
mode = "diff-expression",
scaleWidth = 0.5
)
createContrApptionsDELV <- bscols(dDiffExWidgetLV, cntrDiffExWidgetLV)
createContrApptionsDELV
Specifying targetCol
Using a user-specified column instead of the implicit rownames.
# remove gene column
normCountsSig$gene <- NULL
# make our own
normCountsSig$ArbitraryString <- rownames(normCountsSig)
# stash rownames so we can add them back for next example
rowNames <- rownames(normCountsSig)
rownames(normCountsSig) <- NULL
createContrApption(counts = normCountsSig, annotation = coldata, targetCol = "ArbitraryString")
Specifying sampleCol
Using a user-specified column instead of the implicit rownames.
# restore rownames
rownames(normCountsSig) <- rowNames
# remove gene column
normCountsSig$ArbitraryString <- NULL
# make a column in the annotation matrix
coldata$MyCustomID <- rownames(coldata)
# remove rownames
rownames(coldata) <- NULL
createContrApption(counts = normCountsSig, annotation = coldata, sampleCol = "MyCustomID")
Arbitrary data
Given the simple inputs used by ContrApption, it can be used for any dataset that shared a structure with RNA-Seq experiments.
arbData <- data.frame(one = c(1,5,3), two = c(1,5,3), three = c(5,1,3), four = c(5,1,3))
arbData
## one two three four
## 1 1 1 5 5
## 2 5 5 1 1
## 3 3 3 3 3
arbSamples <- data.frame(sampleNames = c("one", "two", "three", "four"), group = c("A", "A", "B", "B"))
arbSamples
## sampleNames group
## 1 one A
## 2 two A
## 3 three B
## 4 four B
createContrApption(counts = arbData, annotation = arbSamples, sampleCol = "sampleNames")
sessionInfo()
## R version 4.0.4 (2021-02-15)
## Platform: x86_64-apple-darwin17.0 (64-bit)
## Running under: macOS Big Sur 10.16
##
## Matrix products: default
## BLAS: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib
## LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib
##
## locale:
## [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
##
## attached base packages:
## [1] parallel stats4 stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] pasilla_1.18.1 edgeR_3.32.1
## [3] limma_3.46.0 DESeq2_1.30.1
## [5] SummarizedExperiment_1.20.0 Biobase_2.50.0
## [7] MatrixGenerics_1.2.1 matrixStats_0.58.0
## [9] GenomicRanges_1.42.0 GenomeInfoDb_1.26.7
## [11] IRanges_2.24.1 S4Vectors_0.28.1
## [13] BiocGenerics_0.36.0 crosstalk_1.1.1
## [15] DT_0.18 forcats_0.5.1
## [17] stringr_1.4.0 dplyr_1.0.5
## [19] purrr_0.3.4 readr_1.4.0
## [21] tidyr_1.1.3 tibble_3.1.1
## [23] ggplot2_3.3.3 tidyverse_1.3.0
## [25] ContrApption_0.0.4.9000
##
## loaded via a namespace (and not attached):
## [1] colorspace_2.0-0 ellipsis_0.3.1 XVector_0.30.0
## [4] fs_1.5.0 rstudioapi_0.13 bit64_4.0.5
## [7] AnnotationDbi_1.52.0 fansi_0.4.2 lubridate_1.7.10
## [10] xml2_1.3.2 splines_4.0.4 cachem_1.0.4
## [13] geneplotter_1.68.0 knitr_1.32 jsonlite_1.7.2
## [16] broom_0.7.6 annotate_1.68.0 dbplyr_2.1.1
## [19] shiny_1.6.0 compiler_4.0.4 httr_1.4.2
## [22] backports_1.2.1 assertthat_0.2.1 Matrix_1.3-2
## [25] fastmap_1.1.0 cli_2.4.0 later_1.1.0.1
## [28] htmltools_0.5.1.1 tools_4.0.4 gtable_0.3.0
## [31] glue_1.4.2 GenomeInfoDbData_1.2.4 Rcpp_1.0.6
## [34] cellranger_1.1.0 jquerylib_0.1.3 vctrs_0.3.7
## [37] xfun_0.22 rvest_1.0.0 mime_0.10
## [40] lifecycle_1.0.0 XML_3.99-0.6 zlibbioc_1.36.0
## [43] scales_1.1.1 hms_1.0.0 promises_1.2.0.1
## [46] RColorBrewer_1.1-2 yaml_2.2.1 memoise_2.0.0
## [49] sass_0.3.1 stringi_1.5.3 RSQLite_2.2.6
## [52] genefilter_1.72.1 BiocParallel_1.24.1 rlang_0.4.10
## [55] pkgconfig_2.0.3 bitops_1.0-6 evaluate_0.14
## [58] lattice_0.20-41 htmlwidgets_1.5.3 bit_4.0.4
## [61] tidyselect_1.1.0 magrittr_2.0.1 R6_2.5.0
## [64] generics_0.1.0 DelayedArray_0.16.3 DBI_1.1.1
## [67] pillar_1.6.0 haven_2.4.0 withr_2.4.1
## [70] survival_3.2-10 RCurl_1.98-1.3 modelr_0.1.8
## [73] crayon_1.4.1 utf8_1.2.1 rmarkdown_2.7
## [76] locfit_1.5-9.4 grid_4.0.4 readxl_1.3.1
## [79] blob_1.2.1 reprex_2.0.0 digest_0.6.27
## [82] xtable_1.8-4 httpuv_1.5.5 munsell_0.5.0
## [85] bslib_0.2.4